SCCM服务器Bitlocker上的WQL查询 - 不更新
在我们的SCCM服务器上,我们运行以下查询来检测未启用Bitlocker的计算机。运行此操作后,我们在结果集中的某些计算机上设置了bitlocker,但在SCCM中刷新查询时似乎失败了。任何人都可以告知客户发生了什么以及客户更新它的状态需要什么? select SMS_R_System.Name,SMS_R_System.LastLogonUserName,SMS_G_System_ENCRYPTABLE_VOLUME.ProtectionStatus from SMS_R_System inner join SMS_G_System_ENCRYPTABLE_VOLUME on SMS_G_System_ENCRYPTABLE_VOLUME.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceId = SMS_R_System.ResourceId where SMS_G_System_ENCRYPTABLE_VOLUME.ProtectionStatus = 0 and SMS_G_System_OPERATING_SYSTEM.Version > "10.0.14393"