我正在尝试按照这些说明使用 Azure Powershell 在 Azure 中创建 VM。
http://www.windowsazure.com/en-us/manage/services/networking/active-directory-forest/
命令 #1
Set-ExecutionPolicy RemoteSigned
命令 #2
Import-Module 'C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\Azure\Azure.psd1'
命令 #3
Get-AzurePublishSettingsFile
Cmdlet #3 导致以下错误:
Get-AzurePublishSettingsFile : Could not find publish settings. Please run
Import-AzurePublishSettingsFile.
At line:1 char:1
+ Get-AzurePublishSettingsFile
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Get-AzurePublishSettingsFile], FileNotFoundException
+ FullyQualifiedErrorId : Microsoft.WindowsAzure.Management.Subscription.GetAzurePublishSettingsFileCommand
到目前为止,MS 建议了以下措施,但没有效果:
- 以管理员身份运行 Azure Powershell(我是)
- 使用 IE 登录 Azure Mgt 门户并访问以下 URL:https://windows.azure.com/download/publishprofile.asp(我在该 URL 上收到 404 错误)。
- 在隐私浏览模式下尝试在 IE 中访问相同的 URL(没有区别)
我确实看到至少有一个其他人能够让该 URL 为他们工作:http://connectedpawns.wordpress.com/2013/06/11/get-azurepublishsettingsfile-could-not-find-publish-settings-please-run-import-azurepublishsettingsfile/
提前感谢任何关于修复的其他建议
答案1
您在 publishprofile url 中输入了拼写错误 - 其结尾为aspx
:
https://windows.azure.com/download/publishprofile.aspx
一旦解决这个问题,您将能够下载您的个人资料并导入它。