dok.ps1

$mailboxes = get-mailbox | Where-Object PrimarySmtpAddress -like '*@bovicura.dk'

foreach ($mailbox in $mailboxes) {
    $email = $mailbox.PrimarySmtpAddress
    "Processing $email"
    $calendarFolder = (Get-EXOMailboxFolderStatistics -Identity $email -Folderscope Calendar | Where-Object FolderType -eq 'Calendar').Name

    Add-MailboxFolderPermission -Identity $email":\"$calendarFolder -User regitze@bovicura.dk -AccessRights Editor
}