Last active
October 20, 2016 13:16
-
-
Save yvanin/bcaff4bee4069d535d707dfb55dacb0e to your computer and use it in GitHub Desktop.
Connecting to the Azure subscription from Azure Powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Connect your account, you will be prompted to enter your credentials in the popup | |
Add-AzureAccount | |
# Check that your subscription has been loaded | |
Get-AzureSubscription | |
# Select a subscription as default if needed | |
Select-AzureSubscription -Default <SubscriptionName> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment