Get mobile device statistics from exchange server 2013.
#
# Some simple Powershell lines to get statistics of mobile use against Exchange server 2013.
# Lists Name, DeviceModel, LastSuccessSync
$UserList = Get-CASMailbox -Filter {hasactivesyncdevicepartnership -eq $true -and -not displayname -like "CAS_{*"} | Get-Mailbox
$UserList | foreach { Get-MobileDeviceStatistics -Mailbox $_} | FL Name, DeviceModel, LastSuccessSync
#Or to a File
$UserList | foreach { Get-MobileDeviceStatistics -Mailbox $_} | FT Identity, DeviceModel, LastSuccessSync -AutoSize | out-file ASStatistik.txt
# Some simple Powershell lines to get statistics of mobile use against Exchange server 2013.
# Lists Name, DeviceModel, LastSuccessSync
$UserList = Get-CASMailbox -Filter {hasactivesyncdevicepartnership -eq $true -and -not displayname -like "CAS_{*"} | Get-Mailbox
$UserList | foreach { Get-MobileDeviceStatistics -Mailbox $_} | FL Name, DeviceModel, LastSuccessSync
#Or to a File
$UserList | foreach { Get-MobileDeviceStatistics -Mailbox $_} | FT Identity, DeviceModel, LastSuccessSync -AutoSize | out-file ASStatistik.txt
Comments
Post a Comment