Using Powershell to set Calendar Permissions
Hi,
I recently ran a powershell script to set up my user's calendars to be viewable to Default users using the following command.
Set-MailboxFolderPermission -User "Default" -AccessRights "Reviewer" -Identity $calendar
Whilst this does as asked, it only configures the calendars to show Free/Busy time. How do I set the calendar so it displays Full Details?
Thanks,
Adam
November 8th, 2011 8:34am
Hi,
In order to display all details, the user calendar must be shared.
ThxBest Regards Don't forget to mark it as answer if it helps
Free Windows Admin Tool Kit Click here and download it now
November 8th, 2011 8:55am
Correct me if I'm wrong, but isn't sharing a calendar the same as setting permissions on the folder so that a user or group as permissions to view it.
i.e. out of the box, the calendar is always shared... but nobody has access to view it
Therefore, what I want to know is how to set up the permissions correctly to give Full Details to Default users through Powershell
Thanks,
Adam
November 8th, 2011 9:01am
It's true.
But, what kind of details you want to make them visible to other users?
Best regardsBest Regards Don't forget to mark it as answer if it helps
Free Windows Admin Tool Kit Click here and download it now
November 8th, 2011 9:33am
Currently only "busy" is shown for an apppointment.
I would like all details to be displayed (apart from items marked private).
Thanks,
Adam
November 8th, 2011 9:42am
Hi Adam,
"it only configures the calendars to show Free/Busy time"
By default, this is the default share permission.
Did you use this script to set the permission?
Set-CalendarPermissions
http://gallery.technet.microsoft.com/ScriptCenter/19b98a56-42aa-4695-b07c-335d8322b64e/
How about use the cmdlet Set-MailboxFolderPermission to set up the permission for just one mailbox to test?
You can also try the cmdlet in below similar post:
Add-MailboxFolderPermission for every Mailbox
http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/2930b4ab-bfae-4f91-ad1b-1ada8eeb2e10
Frank Wang
Free Windows Admin Tool Kit Click here and download it now
November 10th, 2011 1:23am
Hi Adam,
Any updates?
Frank Wang
November 13th, 2011 8:57pm
This is an old thread, but maybe It'll helps someone else:
Set-MailboxFolderPermission -Identity <therealuser>:\calender -user DEFAULT -AccessRights "Reviewer"
(German user: <therealuser>:\kalender )
You have to open Outlook with that User at least once, before this works.It seems Outlook creates a default calender only it was opened once...
Greetings Shan
Free Windows Admin Tool Kit Click here and download it now
September 27th, 2012 5:10am