Link to home
Start Free TrialLog in
Avatar of Soulwinner
SoulwinnerFlag for United Arab Emirates

asked on

Deleting Email account from Iphone email app wihtout loosing the phone contact

Deleting Email account from Iphone email app wihtout loosing the phone contact
ASKER CERTIFIED SOLUTION
Avatar of cwstad2
cwstad2
Flag of United Kingdom of Great Britain and Northern Ireland 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
yes this is possible


First to get the Devcie ID of user, and how many device he is using and which is not last sync

Get-MobileDeviceStatistics –Mailbox “username” | Format-List DeviceID, DeviceType,DeviceModel, DeviceOS, FriendlyName,FirstSyncTime, LastSuccessSync,Deviceaccessstate


Get-MobileDevice | where {$_.DeviceId -eq “DeviceID”} | Remove-MobileDevice


or you can remove that from EMC or EAC console as well

Thanks,
Andy