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

From fit-PC wiki
Jump to: navigation, search
(Linux)   (change visibility)
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
* This document explains how to retrieve product information (Serial Number (SN), Product Name (PN), Board version etc..) from the operating system.
 +
* It is applicable for both Linux and Windows operating systems.
 +
 
== Windows ==
 
== 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
 +
    wmic bios get smbiosbiosversion 
 +
 +
Sources:
 +
* https://support.microsoft.com/en-us/help/558124
 +
* https://blogs.technet.microsoft.com/askperf/2012/02/17/useful-wmic-queries/
  
 
== Linux ==
 
== Linux ==
  
Get to the terminal and run following commands:
+
Open terminal and run following commands:
  
1. Motherboard DMI strings:
+
1. Motherboard information:
  
 
     $ sudo cat /sys/class/dmi/id/board_serial
 
     $ sudo cat /sys/class/dmi/id/board_serial
 
     $ sudo cat /sys/class/dmi/id/board_version
 
     $ sudo cat /sys/class/dmi/id/board_version
  
 
+
2. Product information:
2. Product DMI strings:
+
  
 
     $ sudo cat /sys/class/dmi/id/product_name
 
     $ sudo cat /sys/class/dmi/id/product_name
Line 17: Line 36:
 
     $ sudo cat /sys/class/dmi/id/product_uuid
 
     $ sudo cat /sys/class/dmi/id/product_uuid
  
 
+
3. BIOS information:
3. BIOS info DMI strings:
+
 
     $ cat /sys/class/dmi/id/bios_*
 
     $ cat /sys/class/dmi/id/bios_*
 +
 +
[[Category:fitlet2]]
 +
[[Category:Airtop2]]
 +
[[Category:Airtop3]]
 +
[[Category:software]]
 +
[[Category:Application notes]]

Latest revision as of 09:03, 26 August 2020

  • This document explains how to retrieve product information (Serial Number (SN), Product Name (PN), Board version etc..) from the operating system.
  • It is applicable for both Linux and Windows operating systems.

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
   wmic bios get smbiosbiosversion  

Sources:

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_*