Azure PowerShell
Install Azure PowerShell If you select Azure PowerShell as your automation solution. Your administrators prefer to run their scripts locally rather than in the Azure Cloud Shell. The team uses machines that run Linux, macOS, and Windows. You need to get Azure PowerShell working on all their devices Using the PowerShellGet cmdlets is the preferred installation method. Install the Az module for the current user only. This is the recommended installation scope. This method works the same on Windows, macOS, and Linux platforms. Run the following command from a PowerShell session: if ( $PSVersionTable .PSEdition -eq 'Desktop' -and ( Get-Module -Name AzureRM -ListAvailable )) { Write-Warning -Message ( 'Az module not installed. Having both the AzureRM and ' + 'Az modules installed at the same time is not supported.' ) } else { Install-Module -Name Az -AllowClobber -Scope CurrentUser } By default, the PowerShell gallery isn't configur...