commandline.info

Realistische Installer-Beispiele

Praxisnahe Silent-Install Kommandos fuer bekannte Programme. Enthalten sind verifizierte Beispiele und eine Community-Sammlung als Ausgangspunkt.

Verifizierte Beispiele (Herstellerdoku)

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"

Quelle: 7-Zip FAQ

Notepad++

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++

Quelle: Notepad++ User Manual

Firefox for Enterprise

Installer: EXE oder MSI Wrapper

# Full installer silent
Firefox Setup .exe /S

# Silent uninstall
"C:\Program Files\Mozilla Firefox\uninstall\helper.exe" /S

Quelle: Mozilla Enterprise Help

Zoom Desktop Client

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"

Quelle: Zoom Deployment Doku

Community-Beispiele (aus Gist, vor Rollout pruefen)

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

Quelle: Community Gist von MarcoGriep88

Empfohlener Ablauf fuer echte Deployments

  1. Installer-Engine identifizieren (MSI, NSIS, Inno, InstallShield, MSIX).
  2. Herstellerdoku fuer genau diese Version pruefen.
  3. Install, Uninstall und Upgrade im Testsystem ausfuehren.
  4. Exit-Codes und Logs dokumentieren.
  5. Erst danach in Intune/MECM/GPO ausrollen.