@FSMPAUL
We are working on obtaining this and other new models of ThinkCentre to write the recipe cards. Right now, the best way to obtain this information is to use one of the methods below.
To target by product friendly name (ex. ThinkCentre M920q), run the following line in a command prompt:
WMIC CSPRODUCT GET VERSION
The result from that query will be the data for the following targeting query:
SELECT * FROM Win32_ComputerSystemProduct WHERE Version = 'RESULT'
To target by product BIOS identifier (ex. M1MKT), run the following line in a command prompt:
WMIC BIOS GET SMBIOSBIOSVersion
The first 4 digits from the query result will be the data for the following targeting query:
SELECT * FROM Win32_BIOS WHERE SMBIOSBIOSVersion LIKE 'RESULT%'
To target by MTM (ex. 10VT), run the following line in a command prompt:
WMIC CSPRODUCT GET NAME
The first 4 digits from the query result will be the data for the following targeting query:
SELECT * FROM Win32_ComputerSystemProduct WHERE Name LIKE 'RESULT%'
We hope to have these recipe cards generated soon.
TLawson