针对 Microsoft Visio Standard 或 Professional 的 SCCM 查询

针对 Microsoft Visio Standard 或 Professional 的 SCCM 查询

我正在进行一个查询,该查询将向我显示工作站是否具有像 visio 2010 这样的办公产品的专业版或标准版。

我在这里找到了以下内容,但无法对其进行调整以显示,目前 SCCM 中的查询效果不是很好。

select SMS_R_System.Name, SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName
from SMS_R_System
inner join SMS_G_System_ADD_REMOVE_PROGRAMS on
SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId
where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Visio Standard%"
or SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Visio Professional%"
order by SMS_R_System.Name

更新了查询,现在它按照我喜欢的方式运行了。针对所有活动的计算机运行此查询,它将返回它们拥有的专业版或标准版。

答案1

这对我有用:

select SMS_R_System.Name, SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName 
from  SMS_R_System 
inner join SMS_G_System_ADD_REMOVE_PROGRAMS 
   on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID =   SMS_R_System.ResourceId 
where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Visio Standard%" 
   or SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Visio Professional%" 
order by SMS_R_System.Name

相关内容