ICMC Posted March 13, 2008 Posted March 13, 2008 I need a log off script to delete the HKEY_CURRENT_USER\Software\Microsoft\EAPOL key. Can anyone help
mattx Posted March 13, 2008 Posted March 13, 2008 Use AutoIT's regdelete function: RegDelete("HKEY_LOCAL_MACHINE\SOFTWARE", "TestKey")
KarenO Posted January 26, 2009 Posted January 26, 2009 To delete a registry key and its subvalues: REG DELETE HKLM\Software\TestKey /f (Available in Microsoft Server Resource Kit - free download - I used the 2003 ResKit - and just put the code in notepad) Also, there are a lot of other registry functions with this command like: add, copy, save, load, restore, compare... (REG ADD, REG LOAD, etc). And within each function --> there are more switches. Very nice.
PiqueABoo Posted January 26, 2009 Posted January 26, 2009 Available in Microsoft Server Resource Kit reg.exe? That's in XP by default. Whatever, I use that. Ultimately, if it's XP native and does the trick then that's what you should use... less of anything added to a system is definitely more.
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