Connect-MsolService:无法在 DLL 'iphlpapi.dll' 中找到名为 'GetPerAdapterInfo' 的入口点
Connect-MsolService : Unable to find an entry point named 'GetPerAdapterInfo' in DLL 'iphlpapi.dll'
我正在 运行我的 azure AD 运行书中安装了 MSOnline 模块的代码:
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 中不工作。
我也遇到了这个异常,似乎根本原因是我用来连接到启用了租户的 MFA 的帐户。使用未启用 MFA 的帐户将解决此问题。
在最新的 MSOnline 模块中报告异常消息有问题,这个问题让我误入歧途,浪费了我很多时间。
当您将 MSOnline 版本更改为 1.0 时,您将看到正确的异常消息。
MSOnline 1.0: https://www.powershellgallery.com/packages/MSOnline/1.0
顺便说一句,我找到了解决 Azure 和 O365 问题的好方法:https://support.microsoft.com/en-us/help/3174960/dev-chat-for-office365-azure这个团队也会回答一些普通 Azure 用户的问题。
我正在 运行我的 azure AD 运行书中安装了 MSOnline 模块的代码:
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 中不工作。
我也遇到了这个异常,似乎根本原因是我用来连接到启用了租户的 MFA 的帐户。使用未启用 MFA 的帐户将解决此问题。 在最新的 MSOnline 模块中报告异常消息有问题,这个问题让我误入歧途,浪费了我很多时间。 当您将 MSOnline 版本更改为 1.0 时,您将看到正确的异常消息。 MSOnline 1.0: https://www.powershellgallery.com/packages/MSOnline/1.0
顺便说一句,我找到了解决 Azure 和 O365 问题的好方法:https://support.microsoft.com/en-us/help/3174960/dev-chat-for-office365-azure这个团队也会回答一些普通 Azure 用户的问题。