Link to home
Start Free TrialLog in
Avatar of sirichaiphumirat
sirichaiphumiratFlag for United States of America

asked on

Help with powershell command to un-quarantine activesync devices on exchange 2010

Can someone please help regarding the powershell command to un-quarantine an active sync device. I can't seem to find that on any where.

thanks
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

Use the following command in powershell to accomplish this...
Get-CASMailbox -Identity <alias> | Set-CASMailbox -ActiveSyncBlockedDeviceIDs:$false

Open in new window


Will.
Avatar of sirichaiphumirat

ASKER

great thanks, but would you know how i would un-quarantine  per devices. Because i have a user that has more then one, but want to only allow one of their devices to come through. I have their DeviceID also.
ASKER CERTIFIED SOLUTION
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thank you