WMI处理器筛选防止GPO软件安装?

我一直在为这个问题奋斗了几天。 我一直在尝试部署Symantec Endpoint Protection几天。 我创build了一个GPO并将其链接到一个WMIfilter,以便它只能定位到64位桌面。 当我检查组策略build模时,看起来它将与此WMI筛选器一起工作。 但是,只有在删除WMI筛选器后才会安装。 任何想法为什么会发生?

这是WMIfilter:

命名空间: root \ CIMv2
查询:从Win32_Processor中selectAddressWidth,其中(AddressWidth =“64”)

您的WMI查询具有无效的引号字符。

Select AddressWidth from Win32_Processor where (AddressWidth=”64″) 

应该:

 Select AddressWidth from Win32_Processor where (AddressWidth="64") 

要么:

 Select AddressWidth from Win32_Processor where (AddressWidth='64') 

我是赛门铁克技术支持团队的Chetan Savade。

以防万一寻找赛门铁克最佳实践文章,这里是他们:

创buildGPO软件分发http://www.symantec.com/docs/HOWTO81180

使用第三方工具安装Windows客户端软件http://www.symantec.com/docs/HOWTO81045

最好的问候,Chetan

你可能需要使用这个

 select * from Win32_Processor where DeviceID="CPU0" and AddressWidth="64" 

但是,除非您以另一种方式将其过滤掉,否则这些服务器也将包含服务器

试试这个,这个查找桌面操作系统和64位

 select * from Win32_OperatingSystem WHERE ProductType = "1" AND OSArchitecture = "64-bit"