7-Zip
Installer: EXE oder MSI
# EXE silent
7z2600-x64.exe /S /D="C:\Program Files\7-Zip"
# MSI silent
msiexec /i 7z2600-x64.msi /qn /norestart INSTALLDIR="C:\Program Files\7-Zip"
commandline.info
Praxisnahe Silent-Install Kommandos fuer bekannte Programme. Enthalten sind verifizierte Beispiele und eine Community-Sammlung als Ausgangspunkt.
Installer: EXE oder MSI
# EXE silent
7z2600-x64.exe /S /D="C:\Program Files\7-Zip"
# MSI silent
msiexec /i 7z2600-x64.msi /qn /norestart INSTALLDIR="C:\Program Files\7-Zip"
Installer: NSIS (neu auch MSI verfuegbar)
# NSIS silent
npp.8.x.Installer.x64.exe /S /noUpdater
# NSIS mit Zielpfad (muss letzter Parameter sein)
npp.8.x.Installer.x64.exe /S /D=C:\Program Files\Notepad++
Installer: EXE oder MSI Wrapper
# Full installer silent
Firefox Setup .exe /S
# Silent uninstall
"C:\Program Files\Mozilla Firefox\uninstall\helper.exe" /S
Installer: MSI
msiexec /i ZoomInstallerFull.msi /quiet /qn /norestart /log C:\Temp\zoom-install.log
# Beispiel mit zusaetzlichen MSI Optionen
msiexec /i ZoomInstallerFull.msi /qn /norestart MSIRestartManagerControl="Disable"
Diese Beispiele stammen aus einer Community-Liste. Sie sind als schnelle Referenz hilfreich, sollten aber vor produktivem Einsatz immer gegen die aktuelle Herstellerdoku getestet werden.
# GIMP (Inno Setup Stil)
gimp-2.10.x-setup.exe /VERYSILENT /NORESTART /MERGETASKS="!desktopicon"
# KeePass (Inno Setup)
KeePass-2.xx-Setup.exe /SP- /VERYSILENT /NORESTART
# Git for Windows (Inno Setup)
Git-2.xx-64-bit.exe /SILENT /NORESTART
# WinSCP (Inno Setup)
WinSCP-6.x-Setup.exe /VERYSILENT /NORESTART
# TeamViewer
TeamViewer_Setup.exe /S
# VS Code (Inno Setup)
VSCodeSetup-x64-x.xx.x.exe /SILENT /NORESTART