Get-MailboxPermissionsScript.ps1
something exciting
Some information about the exciting thing
Table of contents generated with markdown-toc
Script
function Select-FolderLocation {
[Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
[System.Windows.Forms.Application]::EnableVisualStyles()
$browse = New-Object System.Windows.Forms.FolderBrowserDialog
$browse.SelectedPath = "C:\"
$browse.ShowNewFolderButton = $true
$browse.Description = "Select a directory for your report"
$loop = $true
while ($loop) {
if ($browse.ShowDialog() -eq "OK") {
$loop = $false
}
else {
$res = [System.Windows.Forms.MessageBox]::Show("You clicked Cancel. Would you like to try again or exit?", "Select a location", [System.Windows.Forms.MessageBoxButtons]::RetryCancel)
if ($res -eq "Cancel") {
#Ends script
return
}
}
}
$browse.SelectedPath
$browse.Dispose()
}
$directoryPath = Select-FolderLocation
if (![string]::IsNullOrEmpty($directoryPath)) {
Write-Host "You selected the directory: $directoryPath"
}
else {
"You did not select a directory."
}
Get-Mailbox |
Get-MailboxPermission |
Where-Object { $_.user.tostring() -ne "NT AUTHORITY\SELF" -and $_.IsInherited -eq $false } |
Select-Object Identity, User, @{Name = 'Access Rights'; Expression = { [string]::join(', ', $_.AccessRights) } } |
Export-Csv -NoTypeInformation $directoryPath\mailboxpermissions.csv
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.