Katalog (verifiziert)
| Programm | Befehl | Getestet am | Hinweis |
|---|---|---|---|
| 7-Zip (MSI) | msiexec /i 7z2600-x64.msi /qn /norestart | 2026-03-09 | Enterprise MSI |
| Notepad++ | npp.8.x.Installer.x64.exe /S /noUpdater | 2026-03-09 | NSIS Installer |
| Zoom (MSI) | msiexec /i ZoomInstallerFull.msi /qn /norestart | 2026-03-09 | Per-machine empfehlenswert |
| Firefox | Firefox Setup.exe /S | 2026-03-09 | Enterprise silent |
| VS Code | VSCodeSetup-x64-x.xx.x.exe /SILENT /NORESTART | 2026-03-09 | Inno 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)" }