Astalavista Posted August 11, 2004 Posted August 11, 2004 I want to add two registry key to my cleanup.cmdhow do i add this reg key[HKEY_CURRENT_USER\Software\GameHouse\TextTwist]"FullScreen"=dword:00000000how do i delete this key[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"ChikkaIM"="C:\\PROGRA~1\\Chikka\\Chikka.exe"
evilvoice Posted August 11, 2004 Posted August 11, 2004 reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v ChikkaIM /t REG_SZ /freg add HKCU\Software\GameHouse\TextTwist /v FullScreen /t REG_DWORD /d 0 /fI believe is how you would remove it., wrote it so you can use it in your cmd file, from this you should be able to figure out how to do the other one
jdoe Posted August 11, 2004 Posted August 11, 2004 Add these line in cleanup.cmd..reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v ChikkaIM /freg add HKCU\Software\GameHouse\TextTwist /v FullScreen /t REG_DWORD /d 0 /f
Astalavista Posted August 11, 2004 Author Posted August 11, 2004 thank you so much for your help jdoe!
evilvoice Posted August 11, 2004 Posted August 11, 2004 jdoe is sorta correct...what I did with mine was to leave the string ChikkaIM and delete the executable...if anyone has removed msn Messenger from startup, they would know that if you remove the entire string, msn will just put it back, to actually get it to stop running, leave the value in there, and remove the data, not knowing if ChikkaIM did the same thing, I offered a true way to get it to stop running...while deleting the key is fine, if the program checks to see if it is to run on startup, it will just put the thing back...mine solves both.
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