speedy6 Posted February 13, 2008 Posted February 13, 2008 With this: Global $regkey = "HKEY_LOCAL_MACHINE\SOFTWARE\test" $array = _RegEnumKey($regkey) _ArrayDisplay($array) I only can see the keys but not the "(in dutch) tekenwaarde", so in english somehting with value... how can I list them to? Thanks
jvanegmond Posted February 13, 2008 Posted February 13, 2008 RegEnumKey should give you a hint why you are only getting the key...RegEnumVal returns the values. github.com/jvanegmond
speedy6 Posted February 13, 2008 Author Posted February 13, 2008 (edited) Still it doesn't work with this: Global $regkey = "HKEY_LOCAL_MACHINE\SOFTWARE\extool" or with "HKEY_LOCAL_MACHINE\SOFTWARE" also it doesn't work... for $i = 1 to 100 $array = RegEnumVal($regkey,$i) next Edited February 13, 2008 by speedy6
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now