I have used this report so many times now I just have to share it. It will show all computer with a specific file in a specific collection, and has shown to be very useful. Thanks to my colleague Ola Ahrens for applying the finishing touches. The report mof file can be downloaded here.
Tag: SCCM Reporting
Lenovo computers and serial numbers in reports
To sum up the serial number reporting I have been working on at a customer. This post covers how to update the builtin report "Hardware 01A – Summary of computers in a specific collection", to display the serial number from the value inventoried from the BIOS instead of the value inventoried using System Enclosure. The…
Serial Number report in SCCM
When working with the reports in SCCM you may want a report to get all the serial numbers for all computers. Below is a very simple report which includes: Name, Manufacturer, Serial number, Model. It will look like this: SQL Satement: select v_R_System.Name0, v_GS_PC_BIOS.Manufacturer0, v_GS_PC_BIOS.SerialNumber0,v_GS_COMPUTER_SYSTEM.Model0 FROM v_R_System JOIN v_GS_PC_BIOS on v_R_System.ResourceID = v_GS_PC_BIOS.ResourceID JOIN v_GS_COMPUTER_SYSTEM…