commandline.info

Known Good Commands

Direkt einsetzbare Befehle fuer bekannte Programme mit Versions-/Testhinweis.

Katalog (verifiziert)

ProgrammBefehlGetestet amHinweis
7-Zip (MSI)msiexec /i 7z2600-x64.msi /qn /norestart2026-03-09Enterprise MSI
Notepad++npp.8.x.Installer.x64.exe /S /noUpdater2026-03-09NSIS Installer
Zoom (MSI)msiexec /i ZoomInstallerFull.msi /qn /norestart2026-03-09Per-machine empfehlenswert
FirefoxFirefox Setup.exe /S2026-03-09Enterprise silent
VS CodeVSCodeSetup-x64-x.xx.x.exe /SILENT /NORESTART2026-03-09Inno Setup

Standard fuer Rollouts

# Immer mit Logging und Exit-Code Handling
$proc = Start-Process msiexec.exe -ArgumentList '/i app.msi /qn /norestart /L*v C:\Temp\app.log' -Wait -PassThru
if ($proc.ExitCode -notin 0,3010) { throw "Deployment failed: $($proc.ExitCode)" }