使用Get-AzureADWHfBKeys时Azure登录错误代码500119-使用urn重定向URI:方案被禁止

gudnpqoy  于 2023-10-22  发布在  其他
关注(0)|答案(1)|浏览(102)

我试图在PowerShell中使用“Get-AzureADWHfBKeys”,但出现以下错误
安装模块名称WHfBTools -Force Import-Module -Name WHfBTools安装模块名称MSAL.PS -安装版本4.5.1.1-force Import-Module MSAL.PS Get-AzureADWHfBKeys -Tenant“example”-UserPrincipalName“example
Get-AzureADWHfBKeys信息:https://support.microsoft.com/en-us/topic/using-whfbtools-powershell-module-for-cleaning-up-orphaned-windows-hello-for-business-keys-779d1f3f-bb2d-c495-0f6b-9aeb940eeafb
错误:失败原因
使用urn重定向URI:计划被禁止。使用不同的方案,或https://login.microsoftonline.com/common/oauth2/nativeclient
应用程序Azure Active Directory PowerShell应用程序ID
1b 730954 -1685- 4 b74 - 9 bfd-dac 224 a7 b894资源
Windows Azure Active Directory资源ID 0000002 -0000-0000-c 000 - 0000000000

3bygqnnd

3bygqnnd1#

错误:失败原因
使用urn重定向URI:计划被禁止。使用不同的方案或https://login.microsoftonline.com/common/oauth2/nativeclient:-
根据上面的错误,这意味着您需要使用不同的重定向URL。要执行此操作,请转到Azure AD >> App registrations,然后查找具有错误消息ID(1b 730954 -1685- 4 b74 - 9 bfd-dac 224 a7 b894)的应用程序或用于PowerShell脚本的应用程序。
重新配置应用程序以使用此https://login.microsoftonline.com/common/oauth2/nativeclient作为重定向URI。

  • 使用上述方式,我试图检索密钥,因为你没有按照安装所需的模块,并能够得到预期的结果.*
Install-Module -Name WHfBTools -Scope CurrentUser
 Import-Module -Name WHfBTools
 Install-Module -Name MSAL.PS -RequiredVersion 4.5.1.1 -Scope CurrentUser
 Import-Module MSAL.PS
Get-AzureADWHfBKeys -Tenant "<TENANT_ID>" -UserPrincipalName xxxxx

相关问题