当前位置:  开发笔记 > 编程语言 > 正文

Get-AzureRmResourceGroup:术语“ Get-AzureRmResourceGroup”未被识别为cmdlet的名称

如何解决《Get-AzureRmResourceGroup:术语“Get-AzureRmResourceGroup”未被识别为cmdlet的名称》经验,为你挑选了1个好方法。

我正在尝试从PowerShell中的Azure订阅中检索资源组名称:

Get-AzureRmResourceGroup | select resourcegroupname

但是我收到以下错误:

Get-AzureRmResourceGroup : The term 'Get-AzureRmResourceGroup' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling 
of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ Get-AzureRmResourceGroup | select resourcegroupname
+ ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-AzureRmResourceGroup:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

我安装了PowerShell 5.0,并导入了最新的Azure模块。为什么不包括在内?



1> user1894814..:

您需要使用以下命令首先安装Azure RM模块:

Install-Module AzureRM 

然后,您需要导入模块以供使用:

Import-Module AzureRM

推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有