Get-AzureRmVM | Export-CSV不提供Vmsize

时间:2017-07-11 14:23:45

标签: csv export missing-data azure-powershell

执行时:

Get-AzureRmVM 

它提供以下输出:

Resource      Group Name  Location   Vm-Size            OsType NIC      State 
XZSANDBOXRG   Jxx         eastus    "Standard_DS11_v2"  Windows jxx360  Succeeded

但是当我执行时:

Get-AzureRmVM | export-csv ALLVMdetails.csv

它不提供Vm-Size,而是提供VmId

1 个答案:

答案 0 :(得分:0)

以下命令应该适合您。

Get-AzureRmVM -Status|Out-File D:\test.csv

Get-AzureRmVM无法获取VMsize。