我需要在我的订阅ID下列出所有azure vm的Name, IpAddress, ServiceName and InstanceStatus
。有什么办法可以将所有这些细节保存到某个文本文件中或显示在屏幕上吗?
答案 0 :(得分:2)
是。如果您的计算机上安装了Azure powershell,则非常简单。 如果要在监视器上查看结果,请运行此命令 -
Get-AzureVM | Format-List Name, IpAddress, ServiceName, InstanceStatus
如果要在文本文件中保存此详细信息,请使用此 -
Get-AzureVM | Format-List Name, IpAddress, ServiceName, InstanceStatus > c:\Myfolder\VMDetails.txt
希望这能回答你的问题