Whats the best way to query for a Toughbook from MDT/SCCM?
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… Read More »