Import-AzurePublishSettingsFile:找不到接受参数' path'的位置参数。

时间:2015-02-10 13:09:33

标签: azure azure-powershell

我是使用Azure PowerShell的新手,我正在尝试使用此命令导入AzurePublishSettingsFile

Import-AzurePublishSettingsFile C:\Users\Kulasangar G\Downloads\<SubscriptionName>-credentials.publishsettings

我正在按照these步骤配置电源shell,当我尝试执行上述命令时发现此错误:

Import-AzurePublishSettingsFile : A positional parameter cannot be found that accepts argument 'G\Downloads\Visual'.

整个错误已被粘贴here. 可能是什么问题?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

请将您的发布设置文件的路径放在双引号中。

Import-AzurePublishSettingsFile "C:\Users\Kulasangar G\Downloads\<SubscriptionName>-credentials.publishsettings"

由于路径中有空格,PowerShell Cmdlet会将路径视为两个参数C:\Users\KulasangarG\Downloads\<SubscriptionName>-credentials.publishsettings,因此会出错。