Remote Support Software

Provide instant remote support to customers and employees:

Click here for a free trial

Report for who has ActiveSync enabled Accept for members of one specific group

I needs to generate report for all users with ActiveSync enabled
and are not members of "EnabledAS" group.
I have all enabled activesync users:

$Mailboxes = Get-CasMailbox -Filter {ActiveSyncEnabled -eq $true} -ResultSize Unlimited
$Mailboxes | ??

Need to support users over the internet? click here try our remote control online beta






June 5th, 2012 4:59am
Hi
Please try the command
Get-CasMailbox -ResultSize Unlimited | Where {$_.ActiveSyncEnabled -eq $true} | Export-CSV <CSVPath>
CheersZi Feng

TechNet Community Support

Need to support users over the internet? click here try our remote control online beta






June 6th, 2012 2:36am
Thanks Zi,

I got it with this:




Get-QADUser -SizeLimit 5000 -NotMemberOf "xxx" |
%{Get-CasMailbox $_.name -Filter {ActiveSyncEnabled -eq $true}
-ResultSize Unlimited -ErrorAction:silentlycontinue}

There is an amazing pack of free network admin tools. click here to download it






June 10th, 2012 12:44pm

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

Other recent topics Other recent topics