Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Motherboard Device InformationContent of List Motherboard Device Information.vbsMD5 Hash: 88E24D364D0039F03D70D106EB7202EF |
||
' Description: Retrieves information about the motherboard device installed in a computer.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_MotherboardDevice") For Each objItem in colItems Wscript.Echo "Device ID: " & objItem.DeviceID Wscript.Echo "Primary Bus Type: " & objItem.PrimaryBusType Wscript.Echo "Secondary Bus Type: " & objItem.SecondaryBusType Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |