Custom Search

Batch Script to find Motherboard information!


Knowing Motherboard Name, Model, Manufacturer, Serial thru batch script or commandline is essential when someone wants to know these motherboard information without opening the casing of the CPU. This is really sophisticated to retrieve motherboard information using script.  However the following VB Script can do the job to retrieve Motherboard Name, Model, Serial Number and Manufacturer information in Windows.

----VBS Code Start----
strComputer = "."
Set objWMIService = GetObject("winmgmts:" & _
   "{impersonationLevel=impersonate}!\\" & _
   strComputer & "\root\cimv2")
Set colBaseBoard = objWMIService.ExecQuery _
   ("Select * from Win32_BaseBoard")
For Each objBaseBoard in colBaseBoard
   Wscript.Echo "Serial Number: " & objBaseBoard.SerialNumber
   Wscript.Echo "Manufacturer: " & objBaseBoard.Manufacturer
   Wscript.Echo "Name: " & objBaseBoard.Name
   Wscript.Echo "Product: " & objBaseBoard.Product
Next
----VBS Code End-----

I have written a batch scripting tool to retrieve motherboard information through commandline. It is possible to export the information in text file. The tools information is as follows.

Retrieving Motherboard information using M-iNFO thru Command line


Feature:
1.        Find MOTHERBOARD information.
2.       Export the report.
  
Instructions:
1.        Run the M-iNFO.cmd to find motherboard information.
2.       Find the exported report from "Report" folder.

To know motherboard information thru command line Download the Script.

1 comment:

Janice Clements said...

I've been searching for these scripts for a while now. I wanted to find information in my motherboard.

Computer Repair

Post a Comment