{starting to feel like I'm the only paying any more attention to this thread} [Roll Eyes]

I've really come up with something good here. I've found a way to find all USB devices attached to a machine! Next, onto Parallel devices.

code:
$myArray = WMIQuery("PNPDeviceID","Win32_PnPEntity")
$oldArray = WMIQuery("Description","Win32_PnPEntity")
$index = 0
For Each $temp In $oldArray
If (InStr($myArray[$index], "USB"))
? $oldArray[$index]
;? $myArray[$index]
EndIf
$index = $index + 1
Next

If you uncomment the
code:
;? $myArray[$index]

it will print out to the screen the actual device ID as well. Not needed in my case, but was used for testing purposes. Now I should turn this into a nice function and post it in the UDF.
_________________________
Ganiman