| View previous topic :: View next topic |
| Author |
Message |
kok Guest
|
Posted: Wed Apr 25, 2007 3:02 pm Post subject: How Do I Uninstall AutoHotkey? |
|
|
| How Do I Uninstall AutoHotkey? |
|
| Back to top |
|
 |
Durrrrr... Guest
|
Posted: Wed Apr 25, 2007 3:08 pm Post subject: Re: How Do I Uninstall AutoHotkey? |
|
|
| kok wrote: | | How Do I Uninstall AutoHotkey? |
Like any other program.....
(assuming windows):
Add or Remove Programs in the control panel.... find Autohotkey and uninstall it. |
|
| Back to top |
|
 |
Uninstaller Guest
|
Posted: Wed Apr 25, 2007 3:19 pm Post subject: |
|
|
What has become of good ol' format c: ?  |
|
| Back to top |
|
 |
John W
Joined: 09 Apr 2007 Posts: 174
|
Posted: Wed Apr 25, 2007 4:05 pm Post subject: Active |
|
|
| You cannot use format c: while Windows is active... |
|
| Back to top |
|
 |
PO'd Guest
|
Posted: Mon Aug 25, 2008 12:04 am Post subject: Re: How Do I Uninstall AutoHotkey? |
|
|
| Durrrrr... wrote: | | kok wrote: | | How Do I Uninstall AutoHotkey? |
Like any other program.....
(assuming windows):
Add or Remove Programs in the control panel.... find Autohotkey and uninstall it. |
Hmmmm....would be useful if AutoHotKey showed up in Add/Remove program list.
I can't even get rid of this crap through a full RegEdit search and destroy. |
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 1426
|
Posted: Mon Aug 25, 2008 12:36 am Post subject: Re: How Do I Uninstall AutoHotkey? |
|
|
| PO'd wrote: | Hmmmm....would be useful if AutoHotKey showed up in Add/Remove program list.
I can't even get rid of this crap through a full RegEdit search and destroy. |
Well, if you didn't actually install AHK, then you have "dun whachur ain't s'posed ter dun" and you're really pretty much on your own. You can check Start Menu -> Run -> "msconfig" and Start Menu -> Programs -> Startup for things that run at startup. _________________ My Home Thread
More Common Answers: [1]. It's in the FAQ [2]. Ternary ( a ? b : c ) guide [3]. Post code inside [code][/code] tags ! |
|
| Back to top |
|
 |
Slanter
Joined: 28 May 2008 Posts: 342 Location: Minnesota, USA
|
Posted: Mon Aug 25, 2008 5:05 am Post subject: |
|
|
Well, you could totally just run this AHK script | Code: | RegDelete, HKEY_LOCAL_MACHINE, SOFTWARE\AutoHotkey
If (InStr(FileExist(A_StartMenu "\AutoHotkey"),"D"))
FileRemoveDir, % A_StartMenu "\AutoHotkey", 1
Else If (InStr(FileExist(A_StartMenuCommon "\AutoHotkey"),"D"))
FileRemoveDir, % A_StartMenuCommon "\AutoHotkey", 1
SplitPath, A_AhkPath,, Dir
FileRemoveDir, %Dir%, 1
FileDelete, %A_ScriptFullPath% |
_________________ Unless otherwise stated, all code is untested
(\__/) This is Bunny.
(='.'=) Cut, copy, and paste bunny onto your sig.
(")_(") Help Bunny gain World Domination. |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1157 Location: switzerland
|
Posted: Mon Aug 25, 2008 5:11 am Post subject: |
|
|
thank you Slanter
uninstall Autohotkey?
I'll never woul'd do it .... |
|
| Back to top |
|
 |
Slanter
Joined: 28 May 2008 Posts: 342 Location: Minnesota, USA
|
Posted: Mon Aug 25, 2008 5:15 am Post subject: |
|
|
| garry wrote: | thank you Slanter
uninstall Autohotkey?
I'll never woul'd do it .... | Neither would I, I have it installed on all of the computers in my house, and 2 or 3 flash drives too  _________________ Unless otherwise stated, all code is untested
(\__/) This is Bunny.
(='.'=) Cut, copy, and paste bunny onto your sig.
(")_(") Help Bunny gain World Domination. |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1157 Location: switzerland
|
Posted: Mon Aug 25, 2008 5:23 am Post subject: |
|
|
I agree ...
 |
|
| Back to top |
|
 |
|