Okay you have an issue with your code...
You'll kick yourself tbh...
why are you using
Wscript.Echo "Index: " & objItem.Index?
Wscript is an object of WSH and echo is one of it's methods....
repleace wscript.echo with well
msgbox or something along the lines of
dim strNetworkInfo
strNetworkInfo = ""
strNetworkInfo = "Index: " & objItem.Index & vbcr + vblf
strNetworkInfo = strNetworkInfo & "Manufacturer: " & objItem.Manufacturer
msgbox strNetworkInfo
etc etc etc.... let me know if this works for you.. if not i'll have a play...
As regarding it not displaying Windows ME info.... well what do you expect...
You are getting information from the machines WMI and the version is slightly different... you should however beable to get most of the information..
Hope this helps...
That is if your still working on it...
BTW if you want a good book on this you may want to get hold of the Microsoft Press Scripting book... would give you the exact name but i lent it to a sysadmin mate about 3 months back....
Good luck
If it don't work.. let me know and i'll see if I can put an app toegther for you with comments etc etc so you can see what I did.