josi Posted January 8, 2006 Posted January 8, 2006 hi, i will use autoit for deleting a regkey. my simple script: $returnval = RegDelete("HKEY_CURRENT_USER\SOFTWARE", "SimonTatham") MsgBox(0,"Value",$returnval) the return value from regdel = 0 but there is the key. reg.export: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\SimonTatham] where is my problem? thx josi
Developers Jos Posted January 8, 2006 Developers Posted January 8, 2006 Probably you need: $returnval = RegDelete("HKEY_CURRENT_USER\SOFTWARE\SimonTatham") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
josi Posted January 9, 2006 Author Posted January 9, 2006 Probably you need:$returnval = RegDelete("HKEY_CURRENT_USER\SOFTWARE\SimonTatham")thx is running
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