我是使用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. 可能是什么问题?任何帮助将不胜感激。
答案 0 :(得分:2)
请将您的发布设置文件的路径放在双引号中。
Import-AzurePublishSettingsFile "C:\Users\Kulasangar G\Downloads\<SubscriptionName>-credentials.publishsettings"
由于路径中有空格,PowerShell Cmdlet会将路径视为两个参数C:\Users\Kulasangar
和G\Downloads\<SubscriptionName>-credentials.publishsettings
,因此会出错。