Query to determine IMAP enabled users?
Hey all,
Does anyone know of a way to query Exchange through the EMS to get a list of users with IMAP enabled on their accounts? The majority of our users have POP and IMAP disabled by default, but there is a percentage of remote users that did have it enabled in
the past, and now I need to find out who those persons are.
Thanks!
August 24th, 2012 9:53am
an easy way would be to run this:
"Get-CASMailbox | where {$_.PopEnabled -eq $true} | FL name" for POP
"Get-CASMailbox | where {$_.ImapEnabled -eq $true} | FL name" for IMAP
Free Windows Admin Tool Kit Click here and download it now
August 24th, 2012 10:38am
an easy way would be to run this:
"Get-CASMailbox | where {$_.PopEnabled -eq $true} | FL name" for POP
"Get-CASMailbox | where {$_.ImapEnabled -eq $true} | FL name" for IMAP
Awesome, thanks John!
August 24th, 2012 11:02am
an easy way would be to run this:
"Get-CASMailbox | where {$_.PopEnabled -eq $true} | FL name" for POP
"Get-CASMailbox | where {$_.ImapEnabled -eq $true} | FL name" for IMAP
Awesome, thanks John!
Free Windows Admin Tool Kit Click here and download it now
August 24th, 2012 11:07am