A quick PowerShell script to start using Azure RM Infrastructure
Are you or your team using the Azure Portal? But everyone say use PowerShell? Or perhaps JSON? Let’s start with a PowerShell Script, that will let you connect to Azure Resource Manager (AzureRM). #Get connected to your Azure Subscription. #Install Azure RM Commands. Install-Module AzureRM #Import Azure RM Commands. Import-Module AzureRM #Login to AzureRM. Login-AzureRmAccount…