1

我面臨以下問題管理蔚藍的資源管理器存儲的PowerShell

Switch-AzureMode AzureResourceManager 
New-AzureStorageAccount -ResourceGroupName "XYZ" -Name "VmTemplateStorage" -Type "Standard_LRS" 
# lists the account 
Get-AzureStorageAccount 

Set-AzureSubscription -SubscriptionName "ABC" -CurrentStorageAccountName -"VmTemplateStorage" 

# now this outputs error saying: Storage account 'VmTemplateStorage' was not found. 
Get-AzureStorageContainer 

我知道,我可以創造「經典」模式存儲賬戶。但後來我無法將它用作使用資源管理器部署的虛擬機映像的源代碼。

然而,這種方式,我無法管理該帳戶,並使用PowerShell來上傳斑點。

任何想法如何管理基於資源管理器的存儲帳戶?

回答

2

您可以使用以下新的PowerShell命令來管理基於ARM(Azure資源管理器)的存儲帳戶。

注意:您需要更新支持此新功能的Azure PowerShell更高版本,例如2015年11月版本。此外,Switch-AzureMode命令在最新版本中已棄用。

New-AzureRmStorageAccount 
Get-AzureRmStorageAccount 
Set-AzureRmStorageAccount 
Remove-AzureRmStorageAccount