The Exchange Management Shell command to find all iOS 6.1 devices is:
Code:
C:\>Get-ActiveSyncDevice | where {$_.deviceos -match "iOS 6.1"} | select devicetype,deviceos,deviceuseragent
So you should be able to just change it to:
Code:
C:\>Get-ActiveSyncDevice | where {$_.deviceos -match "iOS"} | select devicetype,deviceos,deviceuseragent
to give you all iOS devices and exact versions. I've just tried it and can confirm that it does.
Making it just:
Code:
C:\>Get-ActiveSyncDevice | where {$_.deviceos -match "iOS"}
gives you all information.
Making it:
Code:
C:\>Get-ActiveSyncDevice | where {$_.deviceos -match "iOS"} | select devicetype,deviceos,deviceuseragent,userdisplayname
gives you the user associated with the device. Unfortunately it's the full DN eg domain.local/COMPANYNAME/USERS/ as Exchange doesn't have a field for just the CN.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.