This Query can be use also in a SCCM report to show machine names and Firefox version installed: ***************************************** SELECT TOP (100) PERCENT dbo.v_R_System.Netbios_Name0, dbo.v_GS_SoftwareFile.FileName, dbo.v_GS_SoftwareFile.FileVersion, dbo.v_GS_SoftwareFile.FilePath FROM dbo.v_GS_SYSTEM INNER JOIN dbo.v_R_System ON dbo.v_GS_SYSTEM.ResourceID = dbo.v_R_System.ResourceID INNER JOIN dbo.v_GS_SoftwareFile ON dbo.v_GS_SYSTEM.ResourceID = dbo.v_GS_SoftwareFile.ResourceID WHERE (dbo.v_GS_SoftwareFile.FilePath LIKE '%Program Files%' or
dbo.v_GS_SoftwareFile.FilePath LIKE '%Program Files (x86)%') and
(dbo.v_GS_SoftwareFile.FileName like '%firefox.exe%') ORDER BY dbo.v_R_System.Netbios_Name0 ******************************************
Hardware Inventory V2
This is a different hardware inventory report:
Select
SD.Name0 'Machine Name',
SD.User_Name0,
SD.AD_Site_Name0,
OU.System_OU_Name0,
CS.Manufa…Read More
All Servers SCCM reportThis report will show you a list of all servers detected in SCCM with server hostname, OS and more features:
****************************************…Read More
HD space ReportThis report will show the HD space status of all the machines in SMS/SCCM:
**************************************************************************…Read More
OS count reportThis Report will count all OS in SCCM :
************************************************************************************************
select
&nbs…Read More
Full Software Inventory This is a full soft. inventory report. It could be a little bit confusing depending how many machines you have in your SCCM and how many softwares ins…Read More
Error
ReplyDelete