xManh Posted September 21, 2006 Posted September 21, 2006 I'd like to know if there is a way to read all registry values in a key for example, read all value in key "HKLM\Software" without knowing each valuename Thanks!
BigDod Posted September 21, 2006 Posted September 21, 2006 Straight from the help file For $i= 1 to 10 $var = RegEnumKey("HKEY_LOCAL_MACHINE\SOFTWARE", $i) If @error <> 0 then ExitLoop MsgBox(4096, "SubKey #" & $i & " under HKLM\Software: ", $var) Next Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
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