2016년 2월 4일 목요일

SCCM - Get all Workstations with Internet Explorer 9 or 10 (WQL)

http://it.peikkoluola.net/2014/01/10/get-all-workstations-with-internet-explorer-9-or-10-wql/

Get all Workstations with Internet Explorer 9 or 10 (WQL)


Purpose: Gather all workstations with Internet Explorer 9 or 10
Gathing all of the Internet Explorer versions across your domain will require one additional configuration. This configuration is a client side software inventory setting, where you set the SCCM client to search through all your workstations iexplorer.exe and fetch the version from the appointed file.

How to set SCCM to gather all of your Workstations Internet Explorer versions
#1Administration\Overview\Client Settings
#2Client Settings: Software Inventory Enabled
#3Select Software Inventory
#4iexplore.exe (for x86 Internet Explorer)
c:\Program Files (x86)\Internet Explorer\
iexplorer.exe (for x64 Internet Explorer)
c:\Program Files\Internet Explorer\

Get all Workstations with Internet Explorer 9
Limiting collection: All Workstations (with Client)
Resource Class: System Resource
select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SoftwareProduct.ProductVersion like “9.%” and SMS_G_System_SoftwareProduct.ProductName like “%Internet Explorer%”

Get all Workstations with Internet Explorer 10
Limiting collection: All Workstations (with Client)
Resource Class: System Resource
select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SoftwareProduct.ProductVersion like “10.%” and SMS_G_System_SoftwareProduct.ProductName like “%Internet Explorer%”
 

댓글 없음:

댓글 쓰기