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:
|
|