Hi,
Add all users that need the following rights to a Mail Enabled Security Group.
Then add permissions to calendars with this script:
$allmailbox =
Get-Mailbox -Resultsize
Unlimited -Filter
{RecipientTypeDetails -eq
‘usermailbox’}
Get-Mailbox -Resultsize
Unlimited -Filter
{RecipientTypeDetails -eq
‘usermailbox’}
Foreach ($Mailbox
in $allmailbox)
in $allmailbox)
{
$path =
$Mailbox.alias
+ “:”
+ (Get-MailboxFolderStatistics
$Mailbox.alias
| Where-Object
{ $_.Foldertype
-eq “Calendar”
} | Select-Object
-First 1).Name
add-mailboxfolderpermission –identity ($path)
–user DefaultCalendarShare@domain.fi
–Accessrights editor
}
Now everybody is happy, happy, joy, joy.