# ============================================================================= # Install Azure Command-Line Interface (AZ CLI) on Windows (PowerShell) # https://docs.microsoft.com/en-us/cli/azure/ # https://github.com/Azure/azure-cli # ----------------------------------------------------------------------------- # Developer.......: Andre Essing (https://www.andre-essing.de/) # (https://github.com/aessing) # (https://twitter.com/aessing) # (https://www.linkedin.com/in/aessing/) # ----------------------------------------------------------------------------- # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, # EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. # ============================================================================= # Download AZ CLI setup Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi # Install AZ CLI Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet /norestart' # Clean the kitchen del -Force AzureCLI.msi