Set-CalendarPermsScript.ps1
something exciting
Some information about the exciting thing
Table of contents generated with markdown-toc
Script
function New-O365Session {
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential (Get-Credential) -Authentication Basic -AllowRedirection
Import-PSSession $Session
}
function Remove-O365Session {
Get-PSSession | Remove-PSSession
}
New-O365Session
$UsersMailbox = Get-Mailbox -RecipientTypeDetails UserMailbox
foreach ($item in $UsersMailbox) {
$Permissions = Get-MailboxFolderPermission -Identity ($item.alias + ':\calendar') -User email@example.com | Select-Object Identity, User, AccessRights
if ($Permissions.User -like 'UserName') {
$message = ($item.DisplayName) + ' - User Exists'
Write-Warning -Message "$message" -ErrorAction Stop
}
else {
Add-MailboxFolderPermission -Identity ($user.alias + ':\calendar') -User email@example.com -AccessRights Reviewer
$message = ($item.DisplayName) + ' - User Added'
Write-Verbose -Message "$message" -Verbose
}
}
Remove-O365Session
Write-Verbose -Message "Job Complete, press any key to close this Window" -Verbose
pause
Download
Please feel free to copy parts of the script or if you would like to download the entire script, simple click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.
Report Issues
You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.