Top "Exchange-management-shell" questions

a command line interface and scripting platform for Microsoft Exchange Server.

Search-Mailbox SearchQuery not working

I am trying to delete the contents of an Exchange 2013 mailbox before today's date. It must be specific to the …

powershell exchange-server exchange-management-shell
List all mailboxes a user has access to in Exchange 2013?

Is it possible to run a command to produce a list of mailboxes a user has full access to? I …

powershell exchange-server-2013 exchange-management-shell
How to get a list of all the Shared Mailboxes that a user have access to Exchange2010 | Exchange Management Shell or PowerShell?

Get-Mailbox | Get-MailboxPermission -user Get-Mailbox | Get-MailboxPermission -user | Where {$_.AccessRights -like "sendas*"} Get-Mailbox | Get-ADPermission | Where {$_.extendedRights -like "send-as"} All of the above …

powershell scripting exchange-management-shell