In this video we explain and demonstrate how to connect to Microsoft Azure and list the services that are available at a specific data center. Azure PowerShell Commands: What version of PowerShell do I have? – You need to be at v5 $PSVersionTable.PSVersion Install Azure Command Line – You only need to install this once on each machine you work on Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi…
↧