Get report of mailboxes mobile access Enabled

Hello all,

I'm trying to figure out a way to get a report of all mailboxes that have permission to set up the account on mobile devices (smartphones,etc...). I searched over the internet but haven't found any help. I just discovered that the parameter -OWAforDevicesEnabled might help me, but I'm a noob at scripting. Can you help me please? :D

June 18th, 2015 10:43am

This lists each mailbox that has ActiveSync Enabled. 

get-mailbox -ResultSize Unlimited | Get-CASMailbox | where {$_.ActiveSyncEnabled -eq $true}

And this will list which accounts actually have a device paired:

get-mailbox -ResultSize Unlimited  | Get-CASMailbox | where {$_.ActiveSyncEnabled -eq $true -and $_.HasActiveSyncDevicePartnership -eq $true}


Free Windows Admin Tool Kit Click here and download it now
June 18th, 2015 1:32pm

Thanks Hinte, you've solved my problem.

I really appreciated your help.

Att,

Thadeu Chedid Afonso

June 18th, 2015 3:29pm

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

Other recent topics Other recent topics