Jump to content

Recommended Posts

Posted

I want to add two registry key to my cleanup.cmd

how do i add this reg key

[HKEY_CURRENT_USER\Software\GameHouse\TextTwist]

"FullScreen"=dword:00000000

how do i delete this key

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]

"ChikkaIM"="C:\\PROGRA~1\\Chikka\\Chikka.exe"


Posted

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v ChikkaIM /t REG_SZ /f
reg add HKCU\Software\GameHouse\TextTwist /v FullScreen /t REG_DWORD /d 0 /f

I 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

Posted

Add these line in cleanup.cmd..

reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v ChikkaIM /f

reg add HKCU\Software\GameHouse\TextTwist /v FullScreen /t REG_DWORD /d 0 /f

Posted

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.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...