How to get a list of users in exchange 2007 that have POP3 enabled
Which get command can I run to get a list of all the user mailboxes on my server that have OP3 enabled on their mailbox? Get-Casmailbox does not let me filter by that propertyExchangeGuru
September 15th, 2011 4:49pm

On Thu, 15 Sep 2011 20:43:33 +0000, ExchangeGuru2010 wrote: > > >Which get command can I run to get a list of all the user mailboxes on my server that have OP3 enabled on their mailbox? > > > >Get-Casmailbox does not let me filter by that property Sure it does! Get-CASMailbox -filter "PopEnabled -eq `"$true`"" --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
September 15th, 2011 5:32pm

Hi there! try running the following command from the Exchange Management Shell: Get-CASMailbox | Where-Object {$_.PopEnabled -eq $true} Kind regards, Michael__________________________________ Michael Van Horenbeeck Check out my blog @ Pro-Exchange (Belgian Usergroup)
September 15th, 2011 5:34pm

Thanks Rich. That worked just fine. It was a syntax error on my part!ExchangeGuru
Free Windows Admin Tool Kit Click here and download it now
September 16th, 2011 11:07am

Thanks Michael. This command worked just fine too! It was syntax errors on my part.ExchangeGuru
September 16th, 2011 11:07am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics