- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 Get-MsolUser;我收到以下消息:
Get-MsolUser : Le terme «Get-MsolUser» n'est pas reconnu comme nom d'applet de commande, fonction, fichier de script ou programme exécutable.
英文:
Get-MsolUser : The term 'Get-MsolUser' 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.
如何获得包含此 cmdlet 的任何包?
最佳答案
来自:Powershell : The term 'Get-MsolUser' is not recognized as the name of a cmdlet
cmdlet Get-MsolUser 属于 Azure AD Powershell (V1) 模块 (MSOnline),因此在使用此命令之前,我们需要安装并连接 MSOnline 模块。
安装 MSOnline 模块:
之前您需要下载可执行(exe 二进制)文件来安装此模块,但现在 Microsoft 使该文件过期,您只能通过 powershell 进行安装。使用以管理员身份运行权限打开 Powershell 控制台并运行以下命令:
Install-Module MSOnline -Force
连接/导入 MSOnline 模块:
安装 MSOnline 模块后,运行以下命令连接 MSOnline 模块。
Connect-MsolService
# Once you connect MsolService, now run the Get-MsolUser command.
Get-MsolUser
注意:这是 Azure Active Directory 的旧版 MSOnline V1 PowerShell 模块。我们鼓励客户使用较新的 Azure Active Directory V2 PowerShell 模块而不是此模块。有关V2模块的更多信息,请参阅Azure Active Directory V2 PowerShell .
关于azure - 找不到如何加载包含 Get-MsolUser 的库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55456200/
我正在尝试从AAD获取一组用户,但似乎无法弄清楚如何将过滤器应用于查询。 最终,我需要一个其密码在80天内没有更新的用户列表。 真的没有办法过滤Get-MsolUser吗?我能找到的最接近的东西是这样
我尝试使用 Get-MsolUser;我收到以下消息: Get-MsolUser : Le terme «Get-MsolUser» n'est pas reconnu comme nom d'app
我尝试使用 Get-MsolUser;我收到以下消息: Get-MsolUser : Le terme «Get-MsolUser» n'est pas reconnu comme nom d'app
我正在为一个将管理大量 Office365 帐户的系统编写一些概念验证代码,但是,我似乎在遇到一个相当愚蠢的问题时遇到了第一个障碍。 我正在使用 RunspaceFactory 在 Office 36
我正在使用 Get-MsolUser 来获取事件目录中所有用户的列表。但是,我只想要源是“Microsoft”而不是“Windows Server AD”的用户。此命令不会返回源,也不会为我提供过滤源
我是一名优秀的程序员,十分优秀!