将Azure RM值放入变量

时间:2019-07-09 16:11:27

标签: azure azure-powershell

当我在Azure Powershell任务中运行此代码时

Get-AzureRmStorageAccount -ResourceGroupName "****V2"
$storageAccounts = Get-AzureRmStorageAccount -ResourceGroupName "****V2"
Write-Host $storageAccounts
Write-Host $storageAccounts.value

我知道:

enter image description here

Get-AzureRmStorageAccount -ResourceGroupName "****V2"返回列表,但是变量显示为空。无法将返回值存储在变量上吗?

1 个答案:

答案 0 :(得分:1)

我可以复制您的问题,如下所示。

$storageAccounts = Get-AzStorageAccount -ResourceGroupName "joywebapp" | ft
Write-Output $storageAccounts

在devops powershell任务中:

enter image description here