Difference between revisions of "Install Azure CLI in Windows PowerShell"
Jump to navigation
Jump to search
(Created page with "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...") |
(No difference)
|
Latest revision as of 11:03, 11 March 2020
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'