I am trying to read all the value's and data in a registry key, but one valuet is a network object so the value name is '\\servername\printername'.
So my code looks like this:
wshShell.RegRead ("HKCU\Software\Microsoft\Windows NT\Current Version\Devices\\\servername\printername")
I can read all the other objects in the key except this one because it start with '\\' and messes up regread. I have tried putting the value in quotes, single and double, but with no luck. Any ideas?