Network Administrator Knowledgebase

Oct 21 2007   2:36AM GMT

Get Serial Number of Main Board from Command Line



Posted by: Michael Khanin
Microsoft Windows, Windows Computing

Windows XP and Windows Server 2003 contain the WMI (Windows Management Instrumentation) Wmic.exe command-line utility. By using Wmic.exe we can get a lot of information about computer (server).

To display the local computer name and serial number of Main Board I’ve created a very simple script, SerNum.bat. SerNum.bat contains:

@echo off
Setlocal
For /F %%a in (’wmic baseboard GET SerialNumber /value^|find “SerialNumber”‘) do Set %%a
@echo %Computername% - %SerialNumber%
endlocal

On my desktop, the above script displays:

PELEKAN-XP1 - VF0SA75A0SK

Comment on this Post


You must be logged-in to post a comment. Log-in/Register