Hello,
I have a somewhat complex question to help us think this through:
currently, our Windows machines are installed from a single master image (via MDT) and customized according to user needs.
With WAPT, how would you approach this?
a minimal master image installation with only a WAPT agent be suitable?
Could MDT force the addition of packages to the computer via command lines?
Is it possible for a newly added workstation to automatically inherit packages based on the Active Directory groups it belongs to (without any specific intervention)?
Thank you in advance for your suggestions.
WAPT and MDT
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
- sfonteneau
- WAPT Expert
- Messages: 2318
- Registered: July 10, 2014 - 11:52 PM
- Contact :
You can absolutely deploy wapt with software packages already installed in the image, along with wapt packages if you want; it's possiblehasop wrote: ↑Jan 11, 2018 - 4:11 PM Hello,
A somewhat complex question to help us think things through:
currently, our Windows machines are installed from a single master image (via MDT) and customized according to user needs.
With WAPT, how would you do it?
A minimal master image installation with only a WAPT agent?
Could MDT force the addition of packages to the computer via command lines?
Alternatively, launch the installation of the wapt agent in the mdm installation and then launch command lines in the mdm installation.
Code: Select all
wapt-get install tis-bureautique This will be possible in the enterprise version with the ORs
In the enterprise version you will be able to assign a wapt package to an OU.
- dcardon
- WAPT Expert
- Messages: 1930
- Registration: June 18, 2014 - 09:58
- Location: Saint Sébastien sur Loire
- Contact :
We have clients who use MDT in conjunction with WAPT. They use a command line at the end of their MDT scripts to push the core packages. They are very satisfied with it!
Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
A follow-up question: Is the package actually installed (assuming the return code is 0, I imagine) when the command "wapt-get install package-name" returns?
In other words, is there a guarantee that the packages are correctly installed at the end of the MDT installation process (assuming we use command-line installations), and therefore that the installation is complete and the computer can be shut down?
Thank you in advance.
In other words, is there a guarantee that the packages are correctly installed at the end of the MDT installation process (assuming we use command-line installations), and therefore that the installation is complete and the computer can be shut down?
Thank you in advance.
WAPT 1.5.1.9
Server: CentOS 7
Administration: Windows 7 Pro
Clients: Windows 7 Pro
Server: CentOS 7
Administration: Windows 7 Pro
Clients: Windows 7 Pro
- sfonteneau
- WAPT Expert
- Messages: 2318
- Registered: July 10, 2014 - 11:52 PM
- Contact :
It all depends on how the packets are encoded
The command `wapt-get install groupe-debase` will complete.
But if one of the wapt packages in the group returned an error, the package in question will appear as an error in the console.
Wapt also performs additional checks at the end of the package; at the end of a package installation, Wapt will check if the uninstallkeys mentioned in the package are indeed present on the machine
In this way, even if the installation command returned 0, the wapt package will check if the uninstallkey is present. If it isn't, wapt will intentionally flag the package as an error since the software doesn't appear to be installed.
If an error occurred, the package will show an error in the console. The installation will be attempted again in a future update!hasop wrote: ↑Jan 22, 2018 - 11:30 AM In other words, is there a guarantee that the packages are correctly installed at the end of the MDT installation procedure (assuming we use command-line installations), and therefore that the installation is complete and the computer can be shut down?
Thanks in advance.
So, to summarize:
When a return value of 0 is received, either the package is fully installed, or there was an error (for example, an error in the uninstallkey verification) and the package is marked as failed.
Is there a command line after installing the package that can definitively verify whether the package is showing as failed or not in the console (without having to open the console itself)?
I imagine the behavior is the same whether installing a group or a package with dependencies?
When a return value of 0 is received, either the package is fully installed, or there was an error (for example, an error in the uninstallkey verification) and the package is marked as failed.
Is there a command line after installing the package that can definitively verify whether the package is showing as failed or not in the console (without having to open the console itself)?
I imagine the behavior is the same whether installing a group or a package with dependencies?
WAPT 1.5.1.9
Server: CentOS 7
Administration: Windows 7 Pro
Clients: Windows 7 Pro
Server: CentOS 7
Administration: Windows 7 Pro
Clients: Windows 7 Pro
- sfonteneau
- WAPT Expert
- Messages: 2318
- Registered: July 10, 2014 - 11:52 PM
- Contact :
Hello,
if an error occurred, the package will show an error.
Therefore, an installation is still pending.
To see pending installations, you can run the command:
`wapt-get list-upgrade`.
If software is waiting to be installed, you can run the command `wapt-get upgrade`.
Simon
if an error occurred, the package will show an error.
Therefore, an installation is still pending.
To see pending installations, you can run the command:
`wapt-get list-upgrade`.
If software is waiting to be installed, you can run the command `wapt-get upgrade`.
Simon
Sorry, I wasn't clear.
The idea is to be able to verify, within a script, that the installation is complete and successful.
If a return value of 0 doesn't guarantee a successful installation, can another command guarantee it?
Does the command "wapt-get list-upgrade" with an empty list return a specific return code?
The idea is to be able to verify, within a script, that the installation is complete and successful.
If a return value of 0 doesn't guarantee a successful installation, can another command guarantee it?
Does the command "wapt-get list-upgrade" with an empty list return a specific return code?
WAPT 1.5.1.9
Server: CentOS 7
Administration: Windows 7 Pro
Clients: Windows 7 Pro
Server: CentOS 7
Administration: Windows 7 Pro
Clients: Windows 7 Pro
Sorry to jump into the thread.
With MDT, installing WAPT is very easy. You don't need an image that includes WAPT. You edit the task sequence you're using by adding the WAPT application, just like you would add the Visual C++ Redistributable, etc. Then you add the command line to the application so it launches during installation.
If you've configured your MDT to join the machines to the network, then the GPO is what works; then you refine the process so the packages are downloaded automatically.
With MDT, installing WAPT is very easy. You don't need an image that includes WAPT. You edit the task sequence you're using by adding the WAPT application, just like you would add the Visual C++ Redistributable, etc. Then you add the command line to the application so it launches during installation.
If you've configured your MDT to join the machines to the network, then the GPO is what works; then you refine the process so the packages are downloaded automatically.
--
/r/ComedyCemetery/ "If I install Windows 10 of 32 bits twice... Will it become 64 bits?"
System Management Blog https://deployadmin.com/
/r/ComedyCemetery/ "If I install Windows 10 of 32 bits twice... Will it become 64 bits?"
System Management Blog https://deployadmin.com/
