20 October 2007

Get Serial Number of Main Board from command line

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


Bookmark and Share ITStuff.ca

No comments:

Post a Comment