我試圖用Get-AzureRMVMImage
讓所有可用的虛擬機鏡像的AzureRM,如果我跟着它不會列出像命令Get-AzureVMImage
獲取-AzureRMVmImage cmdlet不會列出所有可用的虛擬機鏡像
任何圖像示例在Get-AzureRMVmImage
的幫助上給出,那麼它不會列出Ubuntu VM。以下是我試圖獲得Windows 2012 R2 Datacenter Image。
PS C:\> Get-AzureRMVMImage -location "Central us" -publisherName "Microsoft" -offer "Windows Server 2012 R2 DataCenter"
Get-AzureRmVMImage : Parameter set cannot be resolved using the specified named parameters.
At line:1 char:1
+ Get-AzureRMVMImage -location "Central us" -publisherName "Microsoft" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Get-AzureRmVMImage], ParameterBindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,Microsoft.Azure.Commands.Compute.GetAzureVMImageCommand
什麼是正確的cmdlet與參數列出可用的RM vm圖像?
此cmdlet的設計不合適。我認爲這應該列出所有圖像,並且當您提供一個參數時,它應該只過濾這些圖像。感謝你的回答。 – Mitul
@Mitul我同意,它使用起來感覺笨拙,但我想它是建立在支持大量圖像的基礎上的,它在單次下載中是不可行的。 –