Setting delegation permissions from powershell
It's easy enough for a user to delegate access to their contact list. What i need to be able to do is set that via powershell. Anyone know what the command would be or a link to the info? I've searched but can't seem to find the info.
thanks so much
November 4th, 2011 11:48am
This should help
Set-MailboxFolderPermission -Identity “UserA:\Calendar” -User “UserB” -AccessRights Editor
Also have a look at
http://technet.microsoft.com/en-us/library/dd298062.aspx
Jasjit Singh Dhindsa | ITIL v3 | IASA Foundation Certified | MCITP:EMA Exchange 2010/2007 | MCTS:OCS 2007 | Exchange 2010/2007 | MCSA:Messaging/Security | MCSE:Messaging/Security
Free Windows Admin Tool Kit Click here and download it now
November 4th, 2011 12:36pm
Hi,
>It's easy enough for a user to delegate access to their contact
list.
Set-MailboxFolderPermission
-Identity “UserA:\Contacts”
-User “UserB” -AccessRights Editor
:)Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
November 7th, 2011 1:17am