HOW TO CHECK YOUR SERIAL NUMBER
METHOD 1 CMD
Open Command Prompt:
- Click the Start menu and type “Command Prompt.”
- Right-click on “Command Prompt” and select “Run as administrator” to open it with administrative privileges.
Enter the Command:
- In the Command Prompt window, type the following command and press Enter:
wmic diskdrive get model,serialnumber
- In the Command Prompt window, type the following command and press Enter:
View the Results:
- The Command Prompt will display the model and serial numbers of all your hard drives.
Example Image:
If you are asked to provide this information in your ticket, please copy the text values directly instead of sending a screenshot.

METHOD 2 POWERSHELL
Open PowerShell:
- Click the Start menu and type “PowerShell.”
- Right-click on “Windows PowerShell” and select “Run as administrator” to open it with administrative privileges..
Enter the Command:
- In the PowerShell window, type the following command and press Enter:
Get-CimInstance Win32_DiskDrive | Format-Table Model, SerialNumber -AutoSize
- In the PowerShell window, type the following command and press Enter:
View the Results:
- PowerShell will display the model and serial numbers of all your hard drives.
