|Microsoft Azure/Office 365 PowerShell Cookbook
First of all, to connect to Azure, open PowerShell and run the following commands:
Import-Module AzureRM
Login-AzureRMAccount
If you have multiple subscriptions tied to your account, you may want to specify which subscription you want to be working on, which yoiu can do with the following command:
Set-AzureRMContext -SubscriptionName
Networking
Creating
|
Loading… |