我已经在 Azure 中成功创建了一个 VM,并使用以下内容导出了它的设置,然后删除了 VM 和服务:
export-azurevm -servicename "testautomation" -name "testautomation" -path "C:\azurestates\testautomation.xml"
remove-azurevm -servicename "testautomation" -name "testautomation"
但是,当我尝试重新创建 VM 时,我得到以下信息:
PS C:> import-azurevm -path "C:\azurestates\testautomation.xml" | new-azurevm -servicename 'testautomation' -location "east us"
new-azurevm : The remote server returned an unexpected response: (400) Bad Request.
At line:1 char:60
+ import-azurevm -path "C:\azurestates\testautomation.xml" | new-azurevm -servicen ...
+ ~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [New-AzureVM], ProtocolException
+ FullyQualifiedErrorId : Microsoft.WindowsAzure.Management.ServiceManagement.IaaS.PersistentVMs.NewAzureVMCommand
这似乎应该很简单,我不太确定我哪里出错了。在使用 New-AzureVMConfig 时,谷歌搜索这个错误指出了我的一些变化,但我不确定如何继续,因为我没有使用它。任何帮助将不胜感激。