Install Azure CLI in Windows PowerShell
Jump to navigation
Jump to search
We can install the Azure CLI using PowerShell. Start PowerShell as administrator and run the following command :
PS C:\WINDOWS\system32> Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'