Created
May 31, 2017 18:56
-
-
Save thisboyiscrazy/61a2f1dff1a92c01ab685af35218d2e1 to your computer and use it in GitHub Desktop.
Set All Contact and Calander Default to Reviewer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Mailbox | ForEach-Object { | |
Set-MailboxFolderPermission ${_}:\calander -User default -AccessRights Reviewer | |
Set-MailboxFolderPermission ${_}:\contacts -User default -AccessRights Reviewer | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment