Start a Conversation

Unsolved

S

2 Posts

4317

January 28th, 2020 13:00

Command line to get Dell's notebook SKU ?

Hello,

I am talking about the notebook's PRODUCT ID (SKU), not the SERIALNUMBER, not the MODEL.
Product ID is well described here: https://youtu.be/_N8BfdCvMRg

The ProductID for Dell notebooks looks like: G4DM2 or 06WTF

For HP notebooks, SKU can be found using this DOS command: wmic csproduct get skunumber
8NH47EA#UUZ

For ASUS notebooks, SKU can be found using this DOS command: wmic computersystem get oemstringarray
{"kPJ-+7X7+EfTa","jTyRUBSNi7Ydf","fCrOzJ6x1i-eh"," ","90NB0KZ1-M00220"}
SKU is: 90NB0KZ1-M00220

I cannot find the SKU number in the output of those 2 commands:
wmic computersystem get * /format:list

or
wmic csproduct get * /format:list

What is the DOS Command line to get the SKU of Dell notebooks?

Thank you in advance and regards

Moderator

 • 

25.7K Posts

January 29th, 2020 08:00

We tried reaching you on a private message but did not receive a response. Please feel free to write back whenever you are available.

1 Message

October 31st, 2023 09:02

commandline:        wmic csproduct   
legacy PowerShell: Get-WmiObject -Class MS_SystemInformation -Namespace root\wmi
PowerShell: Get-CimInstance -ClassName MS_SystemInformation -Namespace root\wmi

No Events found!

Top