Add 'Run as Administrator' for AutoHotkey Scripts in Windows 7 or Vista

As regular readers know well, I’m a huge fan of using AutoHotkey  to automate my entire computing experience… but in Windows 7 and Vista there’s a serious limitation since you can’t run a script as Administrator by default. This means that your hotkeys can’t interact with windows running in Admin mode… so how do we get around this?

There are three solutions to this problem:

  • Completely Disable UAC – Not the best solution for security purposes, but it works.
  • Compile your script to an executable.
  • Hack the registry and add “Run as Administrator” to the context menu.

Compile Script as Executable

All you have to do is right-click on the script, choose “Compile Script”…

add--and-quot;run-as-administrator-and-quot;-for-autohotkey-scripts-in-windows-7-or-vista photo 1

And now you can run the executable version as administrator:

add--and-quot;run-as-administrator-and-quot;-for-autohotkey-scripts-in-windows-7-or-vista photo 2

This isn’t the perfect solution, however. I edit my script all the time, so having to recompile each time I make an edit… would get annoying.

Manual Registry Hack for AutoHotkey “Run as Administrator”

Open up regedit through the start menu search or run box, and then browse down to the following key:

HKEY_CLASSES_ROOT\AutoHotkeyScript\Shell

add--and-quot;run-as-administrator-and-quot;-for-autohotkey-scripts-in-windows-7-or-vista photo 3

Right-click on “Shell” on the left-hand side and create a new key called “runas”, then create a key called “Command” below it. Then create or set the following two values on the right-hand side, adjusting the path if necessary.

Name Value (Default) “C:\Program Files\AutoHotkey\AutoHotkey.exe” “%1” %* IsolatedCommand “C:\Program Files\AutoHotkey\AutoHotkey.exe” “%1” %*

The default key should already be there, just need to set the value.

Now when you right-click on an AutoHotkey script, you’ll see the option to Run as Administrator:

add--and-quot;run-as-administrator-and-quot;-for-autohotkey-scripts-in-windows-7-or-vista photo 4

Download Registry Hack

Download, extract, and double-click on the AdminAutoHotkey.reg to enter the information into the registry. There’s also a removal script included.

Note that this registry hack will only work if you installed AutoHotkey into the default location, otherwise you’ll have to modify the paths.

Download AdminAutoHotkey Registry Hack

Article Add 'Run as Administrator' for AutoHotkey Scripts in Windows 7 or Vista compiled by Original article here

More stories

Change or Set the Greasemonkey Script Editor in Firefox

If you are a fan of the Greasemonkey extension for Firefox you might wonder how to change the script editor/viewer as there is no option for this in the UI. It’s even worse when you download scripts from some website and the line endings don’t work in the inferior default editor.

Ron Paul Toolbar Installation

For anyone even semi-familiar with the Internet I am sure you are aware of the Ron Paul Revolution.  His name currently is the #1 googled subject right now.  The Ron Paul presidential campaign has basically taken over YouTube and his support has gained reputable positions on popular social

Reopen Closed Tabs in Internet Explorer

If there’s one thing that annoys me in Internet Explorer more than anything else, it’s that there is no way to re-open a tab once you’ve closed it. It’s especially annoying when you’ve done a lot of browsing so you have to sift through your history to find the link for the page you closed.

Copy To the Clipboard From the Windows Command Prompt

Let’s face it, not everybody is an ubergeek, so there are many times that you’ll need to ask somebody for help. They always seem to ask you to type things into the command prompt and then tell them the results… but how do you copy that text to the clipboard so you can email it to them?