Install Azure CLI in Windows PowerShell

From Gejoreuy
Revision as of 11:03, 11 March 2020 by Gejor (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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'