如何使用 PowerShell 获取特定位置可用的 Azure 映像发布者?
你可以从 Azure 市场上获取 Azure 映像和发布者名称。若要使用 PowerShell 获取特定位置可用的 Azure 映像发布者,我们可以使用 Get-AzVmImagePublisher 命令并需要提供获取可用发布者所需的位置。
例如:
PS C:\> Get-AzVMImagePublisher -Location Eastus
上述命令将获取该位置可用所有的映像发布者。若要仅获取发布者,你可以筛选输出。
PS C:\> Get-AzVMImagePublisher -Location Eastus | Select PublisherName
输出
xcontentptyltd-1329748 xendata-inc xfinityinc xilinx xoriantsolutionspvtltd xtremedata xyzrd-group-ou yellowfin yellowfininternationalptyltd1616363974066 yokogawarentalleasecorporation your-shop-online
你可以按如下所示筛选特定发布者。
PS C:\> Get-AzVMImagePublisher -Location Eastus | where{$_.PublisherName -like "Microsoft*"}
或对于 RedHat
PS C:\> Get-AzVMImagePublisher -Location Eastus | where{$_.PublisherName -like "Redhat*"}
广告