Saturday, July 25, 2015

SCCM report for all the packages available in SCCM

This report provides list of packages created in SCCM. This report is not an inventory for installed applications on the client devices.
The report contains;
- Package Name
- Vendor and
- Version
*************************************************************************
SELECT Program.PackageID, Package.Name AS 'Package Name', Package.Manufacturer AS Vendor, Package.Version
FROM v_Program AS Program LEFT OUTER JOIN
     v_Package AS Package ON Package.PackageID = Program.PackageID
ORDER BY Program.PackageID

*************************************************************************
More SCCM custom reports can be found here

1 comment:

  1. How to get count for each package on how many machines it got installed

    ReplyDelete