azure powershell 获取可用镜像列表

通过Azure Powershell 指定location和Pbulishername 获取所有可用镜像的

publisherName,Offer,Skus,Version,location信息列表
Get-AzureRmLocation  |
Where-Object { $_.Location -eq 'chinanorth' } |
Get-AzureRmVMImagePublisher | Where-Object { $_.publisherName -eq 'OpenLogic' } |
Get-AzureRmVMImageOffer |
Get-AzureRmVMImageSku |
Get-AzureRmVMImage |select publisherName,Offer,Skus,Version,location|
Format-Table 
原文地址:https://www.cnblogs.com/oceanwang/p/10974066.html