Exchange 2007 Send As Permissions
Need to know how to set the send as permissions to a security group for al lmailboxes in Exchange 2007 console or powershell??
Thanks
Jason
Looking for relevant Exchange Whitepapers? Visit the SearchExchange.com Research Library.
Technochic | May 21 2008 12:48PM GMT
There is a much easier way in Exchange 2007 . You did not mention if you have SP1 installed, if you do not I suggest you do so as soon as possible.
In the SP1 console, select recipient configuration and then mailboxes. You can select one mailbox at a time in the console and then choose “manage send as permissions” in the right-hand pane. Add the security group you want to grant send as permissions.
For a bulk operation use the powershell. You can pipe the users and add send as permissions in bulk.
get-mailbox -identity “yourmailservername” | Add-ADPermission –ExtendedRights “Send As” -group “yoursecuritygroupname”
If this is not quite right, someone correct the script please. I have not had to bulk anable send as permissions yet in exchange 2007, but I have done other bulk operations. This should do the trick for you.