Author: Roy Apalnes
closeAuthor: Roy Apalnes
Name:
Email: [email protected]
Site:
About: See Authors Posts (157)
October 1, 2016
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).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#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 #See which Azure RM Subscription your currently managin. Get-AzureRmContext #Get a view of all Azure RM Subscriptions your account is administrating. Get-AzureRmSubscription #Select a subscription by copying the SubscriptionName. Get-AzureRmSubscription –SubscriptionName "MSDN-plattformer" | Select-AzureRmSubscription |
https://github.com/RoyApalnes/Microsoft/blob/master/ConnectoToAzureRMSub.ps1 Then we need to create…
Read more
Azure Virtual Machine
AzureRM, Get Started, github, Login, powershell