Run a program from context menu with admin priveledges (vista UAC)

1

2

I have been using Notepad2 lately, great util and i added it to the context menu hence i can click on a file and say Notepad2 and it edits it .. but it loads notepad2 without admin privs so i can't save the file.. How can i force it to open with admin privs

Here is what i have, works great apart from can't save in protected parts of disks in vista but of course loading notepad manually as admin works.

[HKEY_CLASSES_ROOT*\shell]

[HKEY_CLASSES_ROOT*\shell\Notepad2]

[HKEY_CLASSES_ROOT*\shell\Notepad2\command] @="\"C:\Program Files\Notepad2\Notepad2.exe\" \"%1\""

user14422

Posted 2009-10-16T20:05:05.847

Reputation: 113

Answers

1

You can use the Elevate Power Toy from Microsoft and just change your registry key to

[HKEY_CLASSES_ROOT*\shell\Notepad2\command] @="elevate \"C:\Program Files\Notepad2\Notepad2.exe\" \"%1\""

heavyd

Posted 2009-10-16T20:05:05.847

Reputation: 54 755

2

Use a shortcut to hstart (see this question) with the /ELEVATED parameter to start Notepad2.

[HKEY_CLASSES_ROOT\*\shell\Notepad2\command]
@="\"c:\\path\\to\\hstart.exe\" /elevated \"\"c:\\Program Files\\Notepad2\\Notepad2.exe\" \"%1\"\""

Snark

Posted 2009-10-16T20:05:05.847

Reputation: 30 147

0

Take a look at Elevator. It adds a context menu "Elevate Me" option, and also allows you to add UAC exlusions for certain programs so that they always open with elevated priviledges. Here's an example of Elevator in action.

John T

Posted 2009-10-16T20:05:05.847

Reputation: 149 037

"add UAC exlusions for certain programs"? Can this be dangerous? – Snark – 2009-10-16T20:20:02.367

In the case of Notepad2 I highly doubt it. It's not like it automatically adds exclusions for files you download so malware isn't any more dangerous than it was before. – John T – 2009-10-16T20:49:58.173