答案 0 :(得分:1)
您要检索以获取“策略”应用程序状态的命令是:
以下是将DevicePolicyApplicationStatus
拉出的示例:
Get-MobileDeviceStatistics -Mailbox mailboxusername | select DeviceID, DeviceType, DevicePolicyApplicationStatus
MS提供的示例也可能会有所帮助:
此示例使用Get-CASMailbox cmdlet确定谁在 组织具有Exchange ActiveSync移动设备。对于每个手机 设备,则检索Exchange ActiveSync设备统计信息。
$UserList = Get-CASMailbox -Filter {HasActiveSyncDevicePartnership -eq $true -and -not DisplayName -like "CAS_{*"} | Get-Mailbox; $UserList | foreach {Get-MobileDeviceStatistics -Mailbox $_.Identity}