How to Find Your Computer’s BIOS Serial Number: A Guide for Windows, macOS, and Linux Users
For Windows
- Using the Command Prompt:
- Open the Command Prompt by typing
cmdin the search box. - Type the command
wmic bios get serialnumberand press Enter. This command queries the Windows Management Instrumentation (WMI) to get the BIOS serial number.
- Open the Command Prompt by typing
- Using PowerShell:
- Open PowerShell by typing
powershellin the search box. - Enter the command
Get-WmiObject win32_bios | select SerialNumberand press Enter. This PowerShell command also uses WMI to retrieve the BIOS serial number.
- Open PowerShell by typing
For macOS
- Using the Terminal:
- Open the Terminal application.
- Type the command
ioreg -l | grep IOPlatformSerialNumberand press Enter. This command searches the I/O Registry for the propertyIOPlatformSerialNumber, which contains the BIOS serial number.
For Linux
- Using the Terminal:
- Open a terminal window.
- Type the command
sudo dmidecode -s system-serial-numberand press Enter. This command uses thedmidecodeutility to access the system’s DMI (Desktop Management Interface) table to find the serial number.
- Checking /sys/class/dmi/id/product_serial file:
- Some systems expose the BIOS serial number directly in the filesystem. You can check this by typing
cat /sys/class/dmi/id/product_serialin the terminal.
- Some systems expose the BIOS serial number directly in the filesystem. You can check this by typing
These methods should cover most modern operating systems and provide you with the BIOS serial number. Note that on some systems, especially laptops, the BIOS serial number might be the same as the system serial number. Additionally, in some cases, the BIOS serial number might not be available due to hardware limitations or privacy settings in the BIOS/UEFI firmware.
