如何在Azure上的Powershell中获取VmSize

nfzehxib  于 2023-08-05  发布在  Shell
关注(0)|答案(2)|浏览(101)

我想写VmSize。当我输入get-azvm时,我有关于VM的所有信息。
当我输入get-azvm |select VmSize时,我有一个空变量。
我怎么能只得到这些信息呢?
我在网上搜索信息,我只找到了如何在本地化中获得有关磁盘的信息。


的数据

PS C:\>Windows\system32> get-azvm

ResourceGroupName           Name   Location          VmSize  OsType            NIC ProvisioningState Zone
-----------------           ----   --------          ------  ------            --- ----------------- ----
WITRG             maszynatestowa westeurope Standard_D2s_v3 Windows maszynatestowa         Succeeded     
WITRG2                     Druga westeurope Standard_DS1_v2 Windows       druga783         Succeeded     
WITRG2                    WitVM2 westeurope Standard_D2s_v3 Windows         WitVM2         Succeeded

字符串

4ioopgfo

4ioopgfo1#

Get-AzVM | Select-Object -ExpandProperty HardwareProfile

字符串

文档:https://learn.microsoft.com/en-us/powershell/module/az.compute/get-azvm

ffx8fchx

ffx8fchx2#

我有一个解决方案Get-AzVM |select -ExpandProperty HardwareProfile

相关问题