The exact silent switches the Python 3.13 installer accepts, plus a one-line command you can paste into a script, Intune Win32 app, or Configuration Manager package.
msiexec.exe /i python-3.13.14-amd64.exe /quiet /norestart InstallAllUsers=0 PrependPath=1
Run from the directory containing python-3.13.14-amd64.exe. Download the installer from the Direct link below first.
| Architecture | Scope | Type | Silent switches | Source |
|---|---|---|---|---|
| x64 | user | EXE Burn bundle | Custom: InstallAllUsers=0 PrependPath=1 | Default for Burn (WiX bundle) |
| x64 | machine | EXE Burn bundle | Custom: InstallAllUsers=1 PrependPath=1 | Default for Burn (WiX bundle) |
| arm64 | user | EXE Burn bundle | Custom: InstallAllUsers=0 PrependPath=1 | Default for Burn (WiX bundle) |
| arm64 | machine | EXE Burn bundle | Custom: InstallAllUsers=1 PrependPath=1 | Default for Burn (WiX bundle) |
| x86 | user | EXE Burn bundle | Custom: InstallAllUsers=0 PrependPath=1 | Default for Burn (WiX bundle) |
| x86 | machine | EXE Burn bundle | Custom: InstallAllUsers=1 PrependPath=1 | Default for Burn (WiX bundle) |
/S for NSIS, /quiet /norestart for MSI).Prefer the winget route? See the full Python 3.13 install page.