Using the code below, I am able to retrieve a SCSI Controller's name.
However, what I really need to retrieve is the SCSI Controller's
firmware version? Any suggestions?


strComputer = "."
set shell = createobject("wscript.shell")
set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
set colItems = objWMIService.ExecQuery("SELECT * FROM "_
& "Win32_SCSIController", "WQL", &h10 + &h20)
contCount = 1
For Each objItem In colItems
wscript.echo "Controller" & contCount& ": " & objItem.Name
contCount = contCount + 1
Next