azure powershell生成帐户密钥错误

时间:2016-06-17 03:43:12

标签: powershell azure-powershell

我想通过Windows PowerShell创建容器,因此尝试通过

获取帐户密钥
$storageAccountKey = Get-AzureRmStorageAccountKey -ResourceGroupName $resourceGroupName -Name $storageAccountName | %{ $_.Key1 }

获取错误

New-AzureStorageContext : Cannot validate argument on parameter 'StorageAccountKey'. The argument is null or empty. Provide an argument that is not null or empty, and then try the 
command again. 

1 个答案:

答案 0 :(得分:1)

这应该有效

NR

问题是结果不是散列表而是.NET泛型列表,因此无法通过密钥名称直接访问该值。 .NET generic list instead of hashtable