Exchange 2007 - 2010:
To view all devices associated with a specific mailbox we can issue:
Get-ActiveSyncDeviceStatistics -Mailbox "[email protected]"
and then to once you have found the relevant device - take a note of its "Identity" and run the following to remotely wipe the device when it next syncs with Exchange:
Clear-ActiveSyncDevice -Identity "domain.com/Users ../My User/ExchangeActvieSyncDevices/iPad"
Exchange 2013 and above:
The commands have changed with the release of Exchange 2013 - to list mobile devices associated with a mailbox we can issue:
Get-MobileDevice -Identity "MyUser"
and to clear it we can issue:
Clear-MobileDevice -Identity User1iPad -NotificationEmailAddresses "[email protected]"
For security purposes you will need to remove the device after the device has been successfully wiped. To do this we can run:
Remove-ActiveSyncDevice -Identity "domain.com/Users ../My User/ExchangeActvieSyncDevices/iPad"
or
Remove-MobileDevice -Identity User1iPad
No comments:
Post a Comment