Link to home
Start Free TrialLog in
Avatar of dgswin
dgswinFlag for Canada

asked on

Get information about mobile device

With Outlook Web Access, in the Options, there is an option to know if the user use a mobile device (see attachment file)

Do you know a CmdLet to get this information?
OWA---mobile-device.jpg
ASKER CERTIFIED SOLUTION
Avatar of Anuroopsundd
Anuroopsundd
Flag of India 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
Avatar of Rajkumar Duraisamy
Use these 3 shell command

PS] C:\Users\Rajkumar\Documents>$Mailboxes = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited
[PS] C:\Users\Rajkumar\Documents>$Devices = $Mailboxes | %{Get-ActiveSyncDeviceStatistics -Mailbox $_.Identity}
[PS] C:\Users\Rajkumar\Documents>$devices | export-csv "c:\activesyncDeviceStat.csv"