IMPORTANT: Request silent application info here

You may have a look at "Office Deployment Tool". If you would like to generate the XML to use with it, you can visit this page for the official XML generator.
FYI - This page only supports the most recent O365 products. If you have an old version of Office, you will have to create the XML manually, which isn't terribly hard if you only need a few customizations.
 
FYI - This page only supports the most recent O365 products. If you have an old version of Office, you will have to create the XML manually, which isn't terribly hard if you only need a few customizations.
For older versions (like 2016 or 2019), the traditional "Office Customization Tool" may work instead.
 
Request for WINCDEMU driver install workaround without disabling driver signing in system options

/UNATTENDED works for initial launch ofcourse, just would like to figure out how to make the driver install part autonomous.
WinCDEmu 4.1 had a signing cert, but it's expired. Therefore you can't use /unattend without disabling driver signing.
 
  • Like
Reactions: Wod
WinCDEmu 4.1 had a signing cert, but it's expired. Therefore you can't use /unattend without disabling driver signing.
Rodger that, I just wondered if there was another way around things, I tried to find my already signed driver from the system and maybe import that into things. What about something else that's as clean and simple that also supports NRG image formats? Any recommendations?
 
Hey all,

I can't believe I am the first person asking this (literally can't believe, I think google is tripping up the recursive search terms, so my apology), but what is the silent switch for installing NTLite? "NTLite_setup_x64 /S"?
 
Hey all,

I can't believe I am the first person asking this (literally can't believe, I think google is tripping up the recursive search terms, so my apology), but what is the silent switch for installing NTLite? "NTLite_setup_x64 /S"?
I didn't know this one, but Chocolatey reports:
/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-​
 
Hey all,

I can't believe I am the first person asking this (literally can't believe, I think google is tripping up the recursive search terms, so my apology), but what is the silent switch for installing NTLite? "NTLite_setup_x64 /S"?
NTLite is packaged with Inno Setup, so the parameters mentioned in the Inno Setup Help should work.
 
I don't think I saw a silent switch for the msi version of VLC mentioned here, but /qn worked for me.

Side note, if anyone knows how to prevent the creation of the VLC desktop icon, please let me know.
 
All installers which use the same package format follow the same rules for install flags. MSI files do /q or /qn

VLC doesn't have any option to prevent the desktop shortcut from being created. Of course, you can delete it from Default User's Desktop folder right afterwards to prevent it from being copied to a new user's profile.
 
I don't think I saw a silent switch for the msi version of VLC mentioned here, but /qn worked for me.

Side note, if anyone knows how to prevent the creation of the VLC desktop icon, please let me know.

using the run box, if you bring up the vlc file and type /? after the msi file name, it gives a list of the optional parameters.

Ntlite uses the /passive switch when the file is added to the post-setup
 
using the run box, if you bring up the vlc file and type /? after the msi file name, it gives a list of the optional parameters.

Ntlite uses the /passive switch when the file is added to the post-setup
Does the /passive switch do anything different than /qn?

All installers which use the same package format follow the same rules for install flags. MSI files do /q or /qn

VLC doesn't have any option to prevent the desktop shortcut from being created. Of course, you can delete it from Default User's Desktop folder right afterwards to prevent it from being copied to a new user's profile.
I was not aware of that. Thanks. Is there any way to prevent the icon from being created within NTLite? I'd rather not sysprep just to remove one icon.
 
Just add a Post-Setup command like:
Code:
cmd /c del /f "C:\Users\Public\Desktop\VLC media player.lnk"

You can't block the shortcut because VLC's unattended install doesn't support anything except choosing a default language. There's a huge disparity in what the interactive install does compared to the unattended mode.
 
I don't think I saw a silent switch for the msi version of VLC mentioned here, but /qn worked for me.

Side note, if anyone knows how to prevent the creation of the VLC desktop icon, please let me know.
If you download the MSI installer, /qn or /quiet would install silently. If you use the EXE installer, I think the silent option is /S because the installer is built with NSIS. However I do not think it is possible to prevent creation of VLC desktop icon, since the function is hardcoded in the installer script (line 386).
 
If you download the MSI installer, /qn or /quiet would install silently. If you use the EXE installer, I think the silent option is /S because the installer is built with NSIS. However I do not think it is possible to prevent creation of VLC desktop icon, since the function is hardcoded in the installer script (line 386).

This has already been addressed by garlin.
 
Just add a Post-Setup command like:
Code:
cmd /c del /f "C:\Users\Public\Desktop\VLC media player.lnk"

You can't block the shortcut because VLC's unattended install doesn't support anything except choosing a default language. There's a huge disparity in what the interactive install does compared to the unattended mode.
Huh, a post-setup command is such a logical response. I like it. Does that whole command go into the parameter section? Or does it all go in the first section with the parameters left empty?

Edit:
Just tried it out with cmd.exe in the first section and your command in the parameters section. Worked perfectly. Thanks everyone for the input. I'm one step closer to the perfect fully automated image. :D
 
Last edited:
TeamViewer MSI is normally "/qn", but the more professional TeamViewer products will require additional flags (which you'll have to search online).
 
Anyone have any luck with adding Dell Command Update 5.1.0 into post config for an install? I have extracted the file from Dell-Command-Update-Windows-Universal-Application_JCVW3_WIN_5.1.0_A00.EXE (extracts as DellCommandUpdateApp_Setup.exe). If I run this on a system that is up and running with elevated cmd prompt as DellCommandUpdateApp_Setup.exe /S /v/qn it installs silently fine, but doing the same within Post config Machine the system will just sit on a command prompt screen and never proceed. Anyone else try this at all?
 
Anyone have any luck with adding Dell Command Update 5.1.0 into post config for an install? I have extracted the file from Dell-Command-Update-Windows-Universal-Application_JCVW3_WIN_5.1.0_A00.EXE (extracts as DellCommandUpdateApp_Setup.exe). If I run this on a system that is up and running with elevated cmd prompt as DellCommandUpdateApp_Setup.exe /S /v/qn it installs silently fine, but doing the same within Post config Machine the system will just sit on a command prompt screen and never proceed. Anyone else try this at all?
Dell Command Update is now an UWP (or Store) app.

UWP apps don't install correctly from Post-Setup (Machine), because commands are run by SYSTEM, which doesn't have a normal user context. Instead, move this to Post-Setup (User) and it should finish.

You could extract the hidden Appx package and License1.xml -- but that's too much work since Dell updates this app frequently.
 
Back
Top