Hey guys,
I am making a script here to read from windows registry. The problem that I am facing is that at a certain point I start getting an error that the file does not exist. First Here is what I am doing
net = r"SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\Unmanaged"
key = OpenKey(HKEY_LOCAL_MACHINE, net)
and I get an error that the file does not exist ..
so I tried going through the path and it works until the part where I place Signatures at the file path. I tried changing signatures to other directories in NetworkList but it always keeps complaining that it doesn't exist although I can see it in ragedit that there is a directory Signatures, Permissions, Profiles etc ..
Any ideas?