如何使用 PowerShell 中的 Azure CLI 获取所有可用的 Azure VM 映像?
若要使用 Azure CLI 获取所有可用的 Azure VM 映像,可以使用 az vm image 命令。
下面的命令将检索市场中所有可用的 Azure 映像。
PS C:\> az vm image list --all
上述命令需要一些时间来检索输出。若要获取表格格式的输出,请使用以下命令。
PS C:\> az vm image list --all -otable
若要从特定位置检索映像,请使用**-l** 或 **--location** 参数。
PS C:\> az vm image list -l eastus -otable
输出
若要从特定发行商处获取 VM 映像,
PS C:\> az vm image list -l eastus -p MicrosoftWindowsServer --all -otable
广告