Silently deploy applications through Windows Deployment Services (WDS) / Microsoft Deployment Workbench, or the command line. Sometimes you just can’t find the correct command parameter – or switch – for silent, unattended software installations. Unattended, silent installation of software is ideal in an automated deployment installation of Windows Server or Windows 7, 8 & 8.1 client computers, through Windows Deployment Services (WDS).
Windows Deployment Services (WDS) / Microsoft Deployment Toolkit (MDT) silent installation commands
Install and depoly applications using Deployment Toolkit. Here’s a small list of applications and their silent installation command line parameters, to use with Microsoft Windows Deployment Services (WDS) or Deployment Toolkit.
Because this is an older post, the software version listed here are old too. Silent installation command switches shouldn’t have changed recently though.
Using WDS, you can set these software installations up as Synchronous FirstLogonCommands in your ImageUnattend.xml
.
Protip: for my Dutch readers I have a post on ITFAQ.nl explaining how to silently install 7-Zip, and how to unpack .zip archives in PowerShell.
Microsoft Windows Update Agent
Microsoft Windows Update Agent
WindowsUpdateAgent30-x86.exe /quiet /norestart /wuforce
Code language: PowerShell (powershell)
Internet Information Services (IIS) 7 Manager
Microsoft Internet Information Services (IIS) 7.0 Manager
don’t forget to enable the IIS-WebServerRole and IIS-WebServerManagementTools in your unattend.xml.
Code language: PowerShell (powershell)msiexec /i inetmgr_i386.msi /quiet
Microsoft Office
create a configuration .xml file
execute setup.exe using configuration xml file:
Code language: PowerShell (powershell)setup.exe /config path\to\config.xml
Microsoft Office 2007 Service Pack 2 – extract patch (.msp) files
Microsoft Office 2007 SP2
extract Windows Installer-patch (.msp) files:
office2007sp2-kb953195-fullfile-nl-nl.exe /extract:c:\temp\office-sp2
Code language: PowerShell (powershell)
Microsoft Office 2007 Service Pack 2 – install patch (.msp) files
install patch
cd c:\temp\office-sp2 && msiexec /update MAINWWsp2.msp /quiet
Code language: PowerShell (powershell)
Microsoft Office 2007 Service Pack 3 – extract patch (.msp) files
Microsoft Office 2007 SP3
extract Windows Installer-patch (.msp) files:
office2007sp3-kb2526086-fullfile-nl-nl.exe /extract:c:\temp\office-sp3
Code language: PowerShell (powershell)
Microsoft Office 2007 Service Pack 3 – install patch (.msp) files
install patch
cd c:\temp\office-sp3 && msiexec /update MAINWWsp3.msp /quiet
Code language: PowerShell (powershell)
Install Microsoft Office 2013 with PowerShell
Use PowerShell to install Microsoft Office 2013 unattended:
function install_Office2013 {
&$sharepath\Office2013\setup.exe /config standard.ww\config.xml -Wait
if (!$?) {
write-host "Office2013 installation failed"
return
}
}
install_Office2013
Code language: PowerShell (powershell)
Disable SystemRestore with PowerShell
System Restore creates a restore point for every .msi
installation. You can disable SystemRestore with PowerShell:
$SysRestore = [wmiclass]"\\$sysname\root\default:systemrestore"
$SysRestore.Disable("C:\")
Code language: PowerShell (powershell)
A more pure PowerShell solution is that you use the Disable-ComputerRestore cmdlet.
Disable System Restore on the specified drive
PS C:\> Disable-ComputerRestore -Drive "C:\"
Code language: PowerShell (powershell)
Disable System Restore on multiple drives
PS C:\> Disable-ComputerRestore "C:\", "D:\"
Code language: PowerShell (powershell)
Enhanced Mitigation Experience Toolkit (EMET)
Microsoft Enhanced Mitigation Experience Toolkit 2.1 – don’t use EMET on Windows 10!
Code language: PowerShell (powershell)msiexec /i EMET_Setup.msi /quiet
Microsoft Security Essentials (MSE)
Microsoft Security Essentials depends/relies on newest Windows Update Agent version, or you’ll receive an error number 327424.
Code language: PowerShell (powershell)mseinstall.exe /s /runwgacheck /o
7zip silent install
7-Zip silent install
7z920.exe /S
Code language: PowerShell (powershell)
When using the 7-Zip .msi
installation file, an optional INSTALLDIR="C:\Program Files\7-Zip"
parameter can be added to provide an installation location.
This installs 7-zip silently.
SNMP Informant
informant-std-17.exe /silent
Code language: PowerShell (powershell)
Ghostscript PS2PDF
ps2pdf 8.15 (direct download)
Code language: PowerShell (powershell)converter.exe /auto
CutePDF Writer
CutePDF Writer 2.8 (depends/relies on ps2pdf)
/no3d for no ASK-toolbar
Code language: PowerShell (powershell)CuteWriter.exe /verysilent /no3d
Gpg4win
GPG4Win 2.1.0
gpg4win-2.1.0.exe /S
Code language: PowerShell (powershell)
Notepad++
Notepad++ 5.9.8
npp.5.9.8.Installer.exe /S
Code language: PowerShell (powershell)
FileZilla
FileZilla 3.5.3
FileZilla_3.5.3_win32-setup.exe /S
Code language: PowerShell (powershell)
Adobe Reader X
Adobe Reader X 10.0.1
Code language: PowerShell (powershell)msiexec /i AcroRead.msi /quiet
Adobe Reader X update
Adobe Reader X 10.1.2 update
Code language: PowerShell (powershell)msiexec /update AdbeRdrUpd1012.msp /quiet
Adobe Flash Player Active-X
Adobe Flash Player Active-X 11.1.102.63
Code language: PowerShell (powershell)msiexec /i install_flash_player_11_active_x_32bit.msi /quiet
Adobe Flash Player Plugin
Adobe Flash Player Plugin 11.1.102.63
Code language: PowerShell (powershell)msiexec /i install_flash_player_11_plugin_32bit.msi /quiet
Learn how to uninstall and remove Adobe Flash Player in Windows Server in PowerShell.
Mozilla Firefox
Mozilla Firefox 11 (and newer/up)
"Firefox Setup 11.0.exe" /S /V"/Passive /NoRestart"
Code language: PowerShell (powershell)
Mozilla Thunderbird
"Thunderbird Setup 11.0.exe" /S /V"/Passive /NoRestart"
Code language: PowerShell (powershell)
Windows Installer command line options may always come in handy:
https://docs.microsoft.com/eun-us/windows/desktop/Msi/command-line-options

Hi, my name is Jan. I am not a hacker, coder, developer or guru. I am merely a systems administrator, doing my daily thing at Vevida (part of Yourhosting) / CLDIN.
If you want a more ad- and tracking-free website experience, please BackMe with a small donation (backme.org) or Paypal.
great work!