Difference between revisions of "How to retrieve product information from within Windows / Linux"

From fit-PC wiki
Jump to: navigation, search
Line 3: Line 3:
 
Open CMD and run the following commands:
 
Open CMD and run the following commands:
  
1. Model information:
+
1. Motherboard information:
     wmic csproduct get name
+
     wmic baseboard get product,manufacturer,version,serialnumber
  
2. Product serial number:
+
2. Product information:
    wmic bios get serialnumber
+
    wmic csproduct get Description,Name,Vendor,Version
  
3. Motherboard information:
+
3. BIOS Information:
     wmic baseboard get product,manufacturer,version,serialnumber
+
     wmic bios get serialnumber
 +
    wmic path win32_computersystemproduct get uuid
 +
 
 +
4. BIOS version
 +
    wmic bios get smbiosbiosversion
  
 
Source - https://support.microsoft.com/en-us/help/558124
 
Source - https://support.microsoft.com/en-us/help/558124

Revision as of 08:29, 17 September 2018

Windows

Open CMD and run the following commands:

1. Motherboard information:

   wmic baseboard get product,manufacturer,version,serialnumber

2. Product information:

   wmic csproduct get Description,Name,Vendor,Version

3. BIOS Information:

   wmic bios get serialnumber
   wmic path win32_computersystemproduct get uuid

4. BIOS version

   wmic bios get smbiosbiosversion

Source - https://support.microsoft.com/en-us/help/558124

Linux

Open terminal and run following commands:

1. Motherboard information:

   $ sudo cat /sys/class/dmi/id/board_serial
   $ sudo cat /sys/class/dmi/id/board_version

2. Product information:

   $ sudo cat /sys/class/dmi/id/product_name
   $ sudo cat /sys/class/dmi/id/product_serial
   $ sudo cat /sys/class/dmi/id/product_uuid

3. BIOS information:

   $ cat /sys/class/dmi/id/bios_*