Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2

Create Custom Hardware Inventory Report for SCCM Task Sequence Pre-cache Content – Part 2. In post 1, we discussed the SCCM Task sequence Pre-cache content Feature. The major challenge with this feature is reporting. In Enterprise, SCCM admins should know which computers have contents Pre-cached.

Currently, there is no SCCM native feature to find the pre-cache status. We will go through the custom inventory configurations required to get Pre-Cached content details from SCCM clients.

This is a series of posts as listed below

  1. How to Configure SCCM Task sequence Pre-Cache Content
  2. Reporting of SCCM Task sequence Pre-Cache Content

The following 2 high levels steps are required to achieve pre-cache status reporting. We will cover each one in detail.

  • Import Custom MOF (download MOF) to collect Client Cache information
  • Customize SQL queries to get reporting as per the need (Download RDL file)

How to import Custom MOF to get Client Cache information

You can use the community tool to create custom hardware inventory MOF files. The custom inventory tool is called RegKeyToMof. The latest version of the tool can be downloaded from here. The RegKeyToMof tool allows you to inventory registry keys on a device and return the data back to SCCM using hardware inventory.

Patch My PC

Check “Enable 64bits” to ask Inventory in 64bits hive

Check “Dynamic Instances” to query all subkeys below selection

Uncheck keys in right-hand treeview to exclude them from report

reate Custom Hardware Inventory Fig. 1a
Create Custom Hardware Inventory Fig. 1a

Now let’s head over to the SCCM admin console to import custom hardware inventory related MOF files.

Adaptiva
  • Launch* SCCM console, click Administration (*Thank you, Joel, for the comment)
  • In the Administration workspace, click Client Settings
  • select Default Client Settings
  • On the Home tab, click Properties
Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content - Part 2
Default SCCM Client agent SettingsCreate – Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2
  • Select hardware inventory and click on Set Classes
hardware inventory
SCCM client agent setting hardware inventory – Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2

Click on Import and Open the MOF file. You can download it from GitHub.

custom MOF Create Custom Report for SCCM Task sequence Pre-cache Content
custom MOF import – Create Custom Report for SCCM Task sequence Pre-cache Content – Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2

Click on Import. This MOF will add the “CacheInfoEx” inventory class

CacheInfoEx Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content - Part 2
Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2

Select CacheInfoEx inventory class as shown below and click ok

CacheInfoEx Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content - Part 2
Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2

Note: You may unselect CacheInfoEx class in the default client agent setting in production. Instead, I suggest creating a new custom agent setting and selecting the CacheInfoEx class.

In the next hardware inventory cycle, the SCCM client collects cache information. You can verify this from inventoryagent.log.

Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, BootDevice, BuildNumber, Caption, CountryCode, CSDVersion, Description, InstallDate, LastBootUpTime, Locale, Manufacturer, Name, Organization, OSLanguage, ProductType, RegisteredUser, SystemDirectory, TotalSwapSpaceSize, TotalVirtualMemorySize, TotalVisibleMemorySize, Version, WindowsDirectory FROM Win32_OperatingSystem; Timeout = 600 secs.
inventoryagent.log
Create Custom Report for SCCM Task sequence Pre-cache Content – Part 2

Inventory is processed by the SCCM server and committed to the database. You can verify dataldr.log to confirm.

  • Begin transaction:Machine= CM1(GUID:ADA4429B-7817-41345-BECE-CFE15556DA22)
  • Commit transaction:Machine= CMl(GUID:ADA44298-7817-41345-BECI3-C FE16556DA22)
  • Done Machine=CM1(GUID:ADA44298-7817-4845-BEC8-CFE16556DA22) code=0 Done blocking until completion.
  • No more machine MIFs to be processed, terminating thread
  • Shutting down Machine Writer
  • Worker thread 5204 halting execution
  • I finished processing 1 MIFs
dataldr.log
dataldr sccm inventory

Result for SCCM Administrator

New SQL view “v_GS_CACHEINFOEX” gets created with the below attributes. These values help to customize SQL queries as per our requirement to check the pre-caching details.

Create Custom Report for SCCM Task sequence Pre-cache Content
Create Custom Report for SCCM Task sequence Pre-cache Content

The below SQL query gives the cached content status for all clients in a specific collection. Modify the collection ID. You can get the collection query Download-RDL-file-SSRS-report-for-Task-sequence-Pre-Cache-status/README.md at main · AnoopCNair/Download-RDL-file-SSRS-report-for-Task-sequence-Pre-Cache-status (github.com)

Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content - Part 2 1
Create Custom Report for SCCM Task sequence Pre-cache Content – Part 2

We can further customize the SQL query to get the pre-cache information specific to the task sequence and collection. RDL file for the below report is available to download from GitHub.

You can import the RDL to get a report, as shown below. Also, the total content size will help you know whether all contents referred to in the Task sequence are cached.

report sccm
Create Custom Report for SCCM Task sequence Pre-cache Content – Part 2

Author

Vimal has more than ten years of experience in SCCM device management solutions. His main focus is on Device Management technologies like Microsoft Intune, ConfigMgr (SCCM), OS Deployment, and Patch Management. He writes about the technologies like SCCM, Windows 10, Microsoft Intune, and MDT.

23 thoughts on “Create Custom Hardware Inventory and Report for SCCM Task sequence Pre-cache Content – Part 2”

  1. Hi Anoop, how are you pal….
    one question on this…I may be wrong though…!

    do you think this class “CacheInfoEx” is already present in system’s WMI, don’t you think we have to enable this class somehow on computers so that it can be picked up by SCCM in the H/W inventory cycle….?

    Reply
  2. Hi,
    Looking to see if i can get some input here. Extended the Inventory using the MOF, data shows in Primary (can see both views and tables) but no data in CAS. Replication is working fine, however no trace of why the data doesnt show up on CAS – every other inventory data does.
    Running this query on CAS or PRI doesnt bring up the articlid either-
    Select * from ArticleId where Replication ID in (select ID from vReplicationData where Replicationgroup like ‘Hardware_Inventory%’)

    Any clues?

    Reply
  3. I have downloaded the RDL and Uploaded, but am getting the below error
    The report server cannot process the report or shared dataset. The shared data source ‘AutoGen__5C6358F2_4BB6_4a1b_A16E_8D96795D8602_’ for the report server or SharePoint site is not valid. Browse to the server or site and select a shared data source. (rsInvalidDataSourceReference)

    Reply
  4. Awesome article thank you for taking time to share your knowledge with us all.

    I noticed, CTRL + F “Lunch SCCM Console.” – it’s ok just give me a signed TShirt.

    Reply
    • Hi Anoop – Can you please check the content on Github for the mof and rdl file? They both appear to have changed to some generic html file. Thanks.

      Reply
  5. I get the error:

    “The following classes for which you are trying to import settings do not exist. Import the required class definitions and then try to import the settings again.” CacheInfoEx

    How do I add?

    Reply
  6. attempting to use this in SCCM 1910 and receive the error in dataldr.log:

    CGroup::AddGroup – WARNING: Could not find group MICROSOFT|CACHEINFOEX|1.0 in the group map, this group in the inventory report will be ignored.

    and the SQL view is not being created.

    Reply
  7. Hi Anoop – Can you please check the content on Github for the mof and rdl file? They both appear to have changed to some generic html file. Thanks.

    Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.