Adding a User to Send on Behalf List without removing previously configured entries
If a mailbox (A) has been configured with another mailbox (B) with Send on Behalf permissions and I want to give mailbox (C) Send on Behalf permissions to (A) also, if I run Set-Mailbox MailboxA -SendOnBehalfTo MailboxC what happens is Mailbox (C) is given this permission and mailbox (B) has it's permissions removed. Can you tell me how to add Mailbox (C) without removing Mailbox (B)'s permissions
March 22nd, 2011 8:59pm

$a = (get-mailbox <name>).GrantSendOnBehalfTo $a += <new-mailbox-user.distinguishedname> set-mailbox <name> -GrantSendOnBehalfTo $a That's one way of doing it.--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
March 22nd, 2011 9:42pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics