2

There is "Run as Administator" option in context menu. How can I change that label to something like "Run by Emperor's name"? Ideally I would like to change icon as well.

Physmatik
  • 159
  • IIRC HKEY_CLASSES_ROOT\* (in the registry) is where the context menu stuff is located. – You'reAGitForNotUsingGit Jul 06 '17 at 18:33
  • 3
    @AndroidDev - You should provide a detailed answer on how the author accomplishes their goal. The answer should be specific, provide detailed instructions, and be detailed enough that anyone can understand what to do. – Ramhound Jul 06 '17 at 18:36

1 Answers1

2

In regedit, go to \HKEY_CLASSES_ROOT\exefile\shell\runas

Insert your label to the “(Default)” value.

You can create new string value "Icon" and set a path to another image instead of standard chess shield.

Just like here:

Physmatik
  • 159