PowerShell Syntax to display Mailbox full Rights
Does anyone have powershell script to check how many mailboxes a particular user has full mail box access to in exchange 2007 sp2 ?
Cheers
March 25th, 2010 4:15am
yea it should be doable
$mailboxes = get-mailbox foreach ($mailbox in $mailboxes) { $mbrights = get-mailboxpermission $mailbox.name foreach($right in $mbrights) { if ($right.user -like "*administrator*" -and $right.accessRights -like "*FullAccess*") { $right.identity} } }Full time IT consultant since 1998 mainly on Exchange\ISA\AD MCSE NT4.0,2000/2003, CCNA
MCITP: Enterprise Messaging Administrator 2007/2010
MCT since 2001
Free Windows Admin Tool Kit Click here and download it now
March 25th, 2010 5:25am