Click here to Skip to main content
15,885,885 members
Articles / Programming Languages / C#
Tip/Trick

Run Windows 8 Applications as Administrator by Default

Rate me:
Please Sign up or sign in to vote.
4.86/5 (8 votes)
11 Jul 2014CPOL 31.9K   1.4K   14   3
Run Windows 8 Applications as Administrator by Default

Introduction

Are you tired of opening a command prompt while in a user account with Administrator privileges, and then running your command only to have it deny you access to it? Are you tired of other security warnings and disabilities when you are already the Administrator?

Well then this tutorial is for you. It is a simple and effective method to bypass the overprotective operating system.

Solution

The workaround to solve the problem cause by another respectfulness from Microsoft towards its customers, is a small registry hack. All you need to do, is to add your application's full path to the following path in Registry under Current User key:

Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers

For people who don't like to tweak their computer's registery directly, I created a simple tool which does the same trick for them.

 

Screenshot

Code: http://www.codeproject.com/KB/miscctrl/795876/AdminRighter.zip
Bin: http://www.codeproject.com/KB/miscctrl/795876/Bin.zip

 

NOTE:

I noticed some fellas suggest disabling UAC as an approach. Please note that disabling UAC will break all Metro Store app.

Using the code

Here is what we do in code

C#
 var key = Registry.CurrentUser.CreateSubKey("Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers");
if (key != null)
{
     var existingValue = key.GetValue("Full Application Path");
     if (existingValue == null)
        {
          key.SetValue("Full Application Path", "^ RUNASADMIN", RegistryValueKind.String);
          key.Close();
          }
         }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralThoughts Pin
PIEBALDconsult15-Jul-14 5:38
mvePIEBALDconsult15-Jul-14 5:38 
GeneralMy vote of 5 Pin
johannesnestler13-Jul-14 23:11
johannesnestler13-Jul-14 23:11 
GeneralMy vote of 5 Pin
Carsten V2.012-Jul-14 0:20
Carsten V2.012-Jul-14 0:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.