我在安装了 MSOnline 模块的 azure AD Runbook 中运行代码:
Import-Module MSOnline
$credential = get-automationpscredential -name 'CoreyA'
Connect-MsolService -Credential $credential
但是得到以下错误:
Connect-MsolService : Unable to find an entry point named 'GetPerAdapterInfo' in DLL 'iphlpapi.dll'.
At line:3 char:1
+ Connect-MsolService -Credential $credential
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (:) [Connect-MsolService], EntryPointNotFoundException
+ FullyQualifiedErrorId :
System.EntryPointNotFoundException,Microsoft.Online.Administration.Automation.ConnectMsolService
我已经尝试了多种代码变体,但似乎无法在任何地方找到解决方案。当我连接到我的以帐户身份运行时,该代码可以在我的本地计算机上使用 powershell ISE,但不能在 AAD 中使用。