Tag Archives: exchange

Powershell to list the rights for each mailbox (who can read others mailboxes)

Just need to put your server name and if you want to not include some of the access rights (ie bes server and backup software etc… just add it to the where clause). Get-Mailbox -server myserver | Get-MailboxPermission | where … Continue reading

Posted in Powershell, VBS, VBA and other scripting. | Tagged , | Comments Off on Powershell to list the rights for each mailbox (who can read others mailboxes)

Powershell to export list of email forwards on an Exchange Server

this will list all the forwards that are active for mailboxes. $fwds = get-mailbox | Where-Object { $_.ForwardingAddress -ne $null } | sort Name | select Name, ForwardingAddress # now get the primary smtp adress of each forward address foreach … Continue reading

Posted in Hints and Tips, Powershell, VBS, VBA and other scripting. | Tagged , | Comments Off on Powershell to export list of email forwards on an Exchange Server