无法访问安装的Azure powershell

时间:2015-01-29 07:55:20

标签: powershell azure

我使用Microsoft Web Platform Installer 5.0安装了azure powershell。  但我无法找到天蓝色的PowerShell。我查了几张图 (x86),但无法找到它......可能是什么问题?  请尽快帮助

提前感谢...

5 个答案:

答案 0 :(得分:4)

对于读这篇文章的人: 我经常经历同样的事情。我通过Web平台安装程序安装Azure Powershell后检查开始菜单,没有任何内容。在我看来,WPI只安装cmdlet,没有可执行文件。 WPI在此文件夹中安装cmdlet:C:\ Program Files(x86)\ Microsoft SDKs \ Azure \ PowerShell

成功安装后重启机器非常重要。如果WPI告诉您,您甚至可能必须在安装期间重新启动,然后重新启动WPI直到它完全完成。

重新启动后,您的普通Powershell.exe中应该可以使用cmdlet。使用以下方法检查它们是否可用:

Get-Command *Azure*

Get-Module *Azure*

我多次感到沮丧,这就是为什么我撰写了一篇博文,解释了通过WPI安装Azure Powershell的问题。

http://manuelmeyer.net/2016/05/azure-tip-1-installing-azure-powershell-using-the-web-platform-installer/

答案 1 :(得分:2)

您应该能够找到一个" Microsoft Azure PowerShell"开始菜单中的快捷方式:

  

C:\ ProgramData \ Microsoft \ Windows \ Start Menu \ Programs \ Microsoft   天青。

快捷方式指向:

  

C:\ Windows \ SysWOW64 \ WindowsPowerShell \ v1.0 \ powershell.exe -NoExit   -ExecutionPolicy Bypass -File" C:\ Program Files(x86)\ Microsoft SDKs \ Azure \ PowerShell \ ServiceManagement \ Azure \ Services \ ShortcutStartup.ps1"

答案 2 :(得分:1)

当我在启动时搜索电源时,我也看不到Azure Powershell。但是当我打开Windows PowerShell并运行命令时     Get-Command *Azure*, 我可以看到所有cmdlet,并且能够运行我想要的所有Azure命令。

答案 3 :(得分:0)

尝试从https://github.com/Azure/azure-powershell下载。 Powershell也作为独立安装程序

答案 4 :(得分:0)

从以下链接下载发布设置文件: https://manage.windowsazure.com/publishsettings

在windows powershell ISE中,运行以下命令以导入发布设置文件:

Import-AzurePublishSettingsFile "D:\publish.publishsettings"

运行以下命令以获取所有订阅:

Get-AzureSubscription

因此,您可以使用Windows Posershell运行Azure powershell命令行开关。