新AzureWebsite PowerShell Cmdlet创建网站但抛出无效URI无法解析主机名

时间:2015-01-14 17:26:38

标签: powershell azure azure-web-sites

我想自动创建Azure网站,并使用以下PowerShell命令:

New-AzureWebsite -Git -Location "West US" -Name mynewsite -PublishingUsername myuser

它创建网站很好,但最后它会抛出以下错误:

New-AzureWebsite : Invalid URI: The hostname could not be parsed.
At line:1 char:1
+ New-AzureWebsite -Git -Location "West US" -Name crmp-ebb-uat -PublishingUsername ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : CloseError: (:) [New-AzureWebsite], UriFormatException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Websites.NewAzureWebsiteCommand

我可以忽略这个错误,但它似乎很乱。有谁知道可能导致这种情况的原因?

更新:此错误似乎与-Git参数有关。如果我不使用-Git参数,它会成功而不会出现错误。使用-Git参数,即使我收到错误,Git存储库仍然可以正确设置。由于似乎不是在New-AzureWebsite cmdlet之外设置Git存储库的方法,我仍然需要忍受此错误。

0 个答案:

没有答案