Hallo
I am very new with Powershell and exchange. I need a List of Mailboxes where a Serviceaccount have not Fullaccess. I am trying this
Get-Mailbox | Get-MailboxPermission | where { ($_.User -ne "domain\account") }
But it dont return the correct result.
Andreas