Showing posts with label PowerShell. Show all posts
Showing posts with label PowerShell. Show all posts

04 August 2009

PowerShell Command to determine who has what device for ActiveSync in Exchange 2007


I wanted to know who had an iPhone to alert them about the 3.0.1 update, this is the PS command I used to get the data

  Get-Mailbox | ForEach {Get-ActiveSyncDeviceStatistics -
Mailbox:$_.Identity} | ft Identity, Devicetype, DeviceUserAgent