Hi,
Please try the below script.
$OUs="OU=test1,DC=contoso,DC=com","OU=test2,DC=contoso,DC=com"
foreach ($OU in $OUs) {
Get-ADUser -Filter * -SearchBase $OU -Properties mailNickname | Where-Object {$_.SamAccountName -ne $_.mailNickname}
}
Best Regards,
Ian Xue
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.