Azure CLI
Overview
msiexec /i azure-cli.msi /quiet /norestartUninstall
msiexec /x {ProductCode} /quiet /norestart Version & Lifecycle
Community Notes
AzureCLI – Command-line note
For unattended Azure CLI deployment on Windows, use the MSI with msiexec /i AzureCLI.msi /quiet /norestart /log C:LogsAzureCLI.log to fully suppress UI and capture install logs, then set the AZURE_CONFIG_DIR environment variable (e.g., via GPO or your deployment tool) to redirect CLI configuration and cache to a managed location for multi-user or roaming-profile environments.
For Windows software distribution, Microsoft documents installing Azure CLI with the MSI by running msiexec.exe /i https://aka.ms/installazurecliwindowsx64 /quiet from an elevated command prompt. For ARM64 devices, use https://aka.ms/installazurecliwindowsarm64 with the same Windows Installer syntax.
After deployment, validate the client with az --version. Microsoft also lists a PowerShell install path using $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://aka.ms/installazurecliwindowsx64 -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'. Source: Microsoft Azure CLI Windows installation documentation.
Release Notes & Updates
Help us match vulnerabilities
No vulnerability match yet. Pick the right product:
Don’t see it? Paste a CPE
Also known as
Other names people use for this app — helps search and matching.
Sign in to suggest a name.
Packaging Notes
Available as MSI installer, ZIP package, and via package managers on Linux and macOS