Powershell to apply Fullaccess and Send as permission to Exchange 2007 Mailbox
Posted by Krishna - MVP on May 27, 2009
Below powershell can help to apply users full access rights and and SendAs permission to the mailbox for the given input CSV file
Format ofthe CSV something like this
UserMailbox,User
Krishna,Domain/Krishna
———————————————————————————————————————-
$csv = Import-csv -path “C:\Userdetails.csv”
foreach($line in $csv)
{
Add-MailboxPermission $Line.UserMailbox -AccessRights FullAccess -user $Line.User
Add-ADPermission $Line.UserMailbox -Extendedrights “Send As” -User $Line.User
}
———————————————————————————————————————-
This entry was posted on May 27, 2009 at 2:37 pm and is filed under Exchange 2007, Powershell. Tagged: Exchange 2007, Full Access, Mailbox, Permission, Powershell, Send As. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.


rihatum said
Hi Krishna,
How can I check who (which user / group) has full access permissions on mailboxes at the moment via powershell ?
Kind Regards