I\'m using WMI Code Creator to generate code to help list the types of devices shown in Device Manager. I\'m trying to detect the presence of a debugger that shows up in Device
Checkout the sample snippet which displays all the installed devices on your computer.
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colItems = objWMIService.ExecQuery( _
"SELECT * FROM Win32_PnPSignedDriver",,48)
For Each objItem in colItems
Wscript.Echo "-----------------------------------"
Wscript.Echo "Win32_PnPSignedDriver instance"
Wscript.Echo "-----------------------------------"
Wscript.Echo "DeviceName: " & objItem.DeviceName
Next