Statistics about users and mobile clients in Exchange 2013
Simple PS to get statistics about users and mobile clients in Exchange 2013
$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 file
$UserList | foreach { Get-MobileDeviceStatistics -Mailbox $_} | FT Identity, DeviceModel, LastSuccessSync -AutoSize | out-file ASStatistik.txt
$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 file
$UserList | foreach { Get-MobileDeviceStatistics -Mailbox $_} | FT Identity, DeviceModel, LastSuccessSync -AutoSize | out-file ASStatistik.txt
Comments
Post a Comment