我看到很多关于Azure问题的答案,答案是你必须执行一系列这样的命令:
azure vm image list-publishers westus
azure vm image list-offers westus MicrosoftWindowsServer
azure vm image list-skus westus MicrosoftWindowsServer WindowsServer
来自Service Fabric Application vmImageSku
这只是许多人中的一个随机例子。
如何将这样的语句翻译成有效的命令?
我觉得我在环境配置中缺少一些步骤。 我刚刚启动了一个普通的PowerShell控制台,并正在努力。 我没有在控制台中导入任何特定的azure,但是在盒子上安装了Visual Studio 2017和最新的azure sdk。
答案 0 :(得分:2)
这些命令是不 Azure PowerShell命令。正如Martin所说,要运行这些命令,您应该安装CLI 1.0。 我们可以使用Azure PowerShell命令来获取这些信息:
azure vm image list-publishers westus
Get-AzureRmVMImagePublisher -Location westus
azure vm image list-提供westus MicrosoftWindowsServer
Get-AzureRmVMImageOffer -Location westus -PublisherName MicrosoftWindowsServer
azure vm image list-skus westus MicrosoftWindowsServer WindowsServer
Get-AzureRmVMImageSku -Location westus -PublisherName MicrosoftWindowsServer -Offer WindowsServer
答案 1 :(得分:0)
请注意,CLI已经version 2使用您可能更喜欢的az
关键字。