Category Archives: UDI

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… Read More »

A Custom vbScript to Restore and Capture User Data using USMT 4.

By | January 31, 2014
Share

The reason for a custom script, is that the customer wanted to see a prompt displaying how large the backup .MIG file would be before initiating the backup. The script was used in an SCCM 2012/MDT 2012U1 UDI Task Sequence.  I kicked off the script using a “Run a Command Line” step and used the… Read More »