Aug 29 2020 10:39 PM
Hey,
I am trying filter out Azure guest accounts which doesn't include public domain using following command but its not showing proper output. Its showing all guest accounts.
Can someone please help here.
Get-AzureADUser -Filter "UserType eq 'Guest' and AccountEnabled eq true" | Where-Object {$_.mail -notlike '*@hotmail.com' -or $_.mail -notlike '*@gmail.com' -or $_.mail -notlike '*@yahoo.com'}
Aug 30 2020 08:42 AM
Ahem, you are using -OR, change that to -AND.