Hi Gurus,
I have exchange 2010 (going to migrate soon) and im trying to set the default user calendar permission to reviewer for all the users.
When i use this command i can change it one by one:
Set-MailboxFolderPermission -Identity user@domain.com:\calendar -User default -AccessRights reviewer
But im trying to use a PS script to change this to everyone so im using this one
$mailboxes = get-mailbox -resultsize "unlimited"ForEach ($mailbox in $mailboxes){Set-MailboxFolderPermission -identity $Mailbox":\calendar" -User Default -AccessRights Reviewer}
When i try to run it on PS screen, it comes back as if its done and no errors but nothing changes and all the calendars permissions still the same.
Do i need to change anything on this one?
Thank You
Karim