Whats the best way to query for a Toughbook from MDT/SCCM?

By | February 17, 2015
Share

The old way:

SELECT * FROM Win32_ComputerSystem WHERE Model LIKE “CF-53J%”

This query no longer works for Toughbook systems manufactured after 2014.  This field is now populated with a generic value for the Toughbook revision (CF52-2 instead of CF-53JVUZK1M).

 

The best way:

SELECT * FROM Win32_BaseBoard WHERE Product LIKE “CF53-2%”

 

If you prefer to still query against the full model:

SELECT * FROM MS_SystemInformation WHERE SystemSKU LIKE “CF-53J%”

 

Here are some WMIC commands that can pull these values quickly:

wmic baseboard get product

wmic computersystem get model

wmic /NAMESPACE:\\root\WMI PATH MS_SystemInformation get SystemSKU

2015-02-17_13-53-48

 

 

 

 

/Brian

4 thoughts on “Whats the best way to query for a Toughbook from MDT/SCCM?

    1. Brian Gonzalez Post author

      Brad, Sorry about that, See updated links below. I’ll get the links on this site updated as well.

      Driver CABs Site:
      Driver Bundles Site:
      Bundle Usage Help:
      WinPE Driver Bundles:

      Let me know if you run into any issues.

      /Brian G

      Reply
  1. Joseph

    I’ve found that several of our Toughbooks don’t have win32_baseboard – Model populated. Instead I’ve been able to query for Product almost consistently.

    Reply

Leave a Reply

Your email address will not be published.

*

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