Run POWERSHELL as admin
Get Verison of PowerShellGet
Get-Module PowerShellGet -list | Select-Object Name,Version,Path
What is PowerShellGet
https://blogs.msdn.microsoft.com/mvpawardprogram/2014/10/06/package-management-for-powershell-modules-with-powershellget/
I had to use –allowclobber to force the install.
Install-Module AzureRM (–allowclobber)
Load the module
Import-Module AzureRM
Login to azure
Login-AzureRmAccount
Get-AzureRmSubscription
Set-AzureRmContext -SubscriptionName "Example Subscription Two"
New-AzureRmResourceGroup -Name TestRG1 -Location "South Central US"
Get-AzureRmResourceGroup -ResourceGroupName TestRG1
Get-AzureRmResourceGroup
(returns all ResourceGroups)
References:
https://docs.microsoft.com/en-us/powershell/azure/install-azurerm-ps?view=azurermps-3.8.0
https://docs.microsoft.com/en-us/powershell/azure/overview?view=azurermps-3.8.0
https://docs.microsoft.com/en-us/azure/azure-resource-manager/powershell-azure-resource-manager
No comments:
Post a Comment