Speer,
This VBScript may help. (watch for line wrap)
-----------------------------
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")
strKeyPath = "SYSTEM\CurrentControlSet\Control\Network"
strValueName = "FilterClasses"
objReg.GetMultiStringValue HKEY_LOCAL_MACHINE,strKeyPath, _
strValueName,arrValues
For Each strValue In arrValues
Wscript.Echo strValue
Next
-----------------------------
--
Regards,
Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft MVP [Windows NT/2000 Operating Systems]
Microsoft Certified Professional [Windows 2000]
http://www.microsoft.com/protect
:
| Patrick, Afraid I'm using an asset inventory application
| to extract the values and produce a spreadsheet or db. I
| suspect I'll need to convert the field before I can read
| it. That's why I was looking for a converter. If I don't
| hear of anything by next Tuesday I guess I'll have to
| write one myself. I don't really have the time but then
| again I can't connect to 40,000 machines and run regedt32
| either.
| Thanks for the suggestion,
| Bob