Questions tagged «sccm»

1
Powershell脚本 - SCCM - 桌面刷新
我们目前正在租用的PC上进行桌面刷新。我想知道是否可以将计算机添加到它正在替换的相同设备集合中。 我们有5个补丁周期,机器分布在这些设备集合中。这些也是分开的,以便我们在修补时不会删除整个部门或站点。 我想创建一个powershell脚本,可以在部署替换设备后运行,以查找旧设备集合并将新设备添加到这些集合中。 任何指针都很有用。 干杯。

1
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"
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.