Powershell - Get all Mailboxes without Mail-Adress-Policy
Hi there,
i search for a powershell command that tells me all mailboxes that have not set the e-mail adress policy.
Many thanks for all help.
Markus
August 11th, 2012 2:24pm
On Sat, 11 Aug 2012 18:19:47 +0000, mullfreak wrote:
>i search for a powershell command that tells me all mailboxes that have not set the e-mail adress policy.
>
>Many thanks for all help.
get-mailbox -resultsize unlimited -filter {EmailAddressPolicyEnabled
-eq $false}
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
August 11th, 2012 2:39pm
Hi Markus,
Any updates?Frank Wang
TechNet Community Support
August 13th, 2012 4:14am
It should by
Something like:
Get-Mailbox -ResultSize Unlimited -Filter {EmailAddressPolicyEnabled -eq $false
Free Windows Admin Tool Kit Click here and download it now
August 14th, 2012 7:52pm