Powershell 获取同步设置错误 AzureAD

Powershell Get Sync provisioning errors AzureAD

我需要调整一个脚本,该脚本目前正在使用 Msol-Service 模块和 AzureAD 模块。我有一个在 Powershell 中开发的脚本,它使用 Get-MsolDirSyncProvisioningError 检查我的租户中的同步错误。

Get-MsolDirSyncProvisioningError -ErrorCategory PropertyConflict 

我在 AzureAD cmdlet 的文档中进行了搜索,但没有看到任何执行某些操作的 cmdlet。

AzureAD 模块中的哪个 cmdlet 是相同的?

目前没有 azure 广告同步配置错误的命令 available.They 都是托管的,可以在 azure 供应审核日志中看到,即;通过 GUI.The 唯一可用的命令是通过 msol,就像您提供的命令一样(Get-MsolDirSyncProvisioningError -ErrorCategory PropertyConflict)。


这可能不是脚本的要求,但您可以针对特定用户 (UPN) 尝试使用以下命令,如果有帮助,请忽略。

示例命令:

1.

(Get-AzureADUser -All 1| where {$_.UserPrincipalName -like "user@xyz.OnMicrosoft.com"}).dirsyncprovisioningerrors | fl  

(或)

( get-azureaduser -all $true -Filter "startswith(UserPrincipalName,'admin@xyz.onmicrosoft.com')").dirsyncprovisioningerrors 

参考: get-azureaduser-vs-get-msoluser |community.spiceworks