使用Powershell,如何从Exchange移动设备检索“策略应用程序状态”?

时间:2019-07-09 17:05:15

标签: powershell exchange-server mobile-devices activesync

我正在编写脚本来处理Exchange 2019中隔离的移动设备,在允许它们之前,我需要确认“策略应用程序状态”为“已完全应用”,但我不认为这是使用Get进行引用的一种选择-MobileDevice。

enter image description here

1 个答案:

答案 0 :(得分:1)

您要检索以获取“策略”应用程序状态的命令是:

Get-MobileDeviceStatistics

以下是将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}