Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've always disabled UAC on my machines, and did the same after my Windows 8 upgrade, or so I thought. It turns out there is no off option, only turning off the notifications. This means nothing is run as an Administrator despite being in the Administrator group, so I need to keep closing and reopening my consoles and Visual Studio when I try to debug (attach to process, not F5) which is very frustrating. In Windows 7 you could go into a programs compatibility settings and check off to always run as an Administrator. Is there a similar option in Windows 8? It's really annoying that I need to either remember to take extra steps to open it as an Administrator or tell it to close and re-open when I go to debug for the first time.

share|improve this question
2  
I think this is valid question here, but I think you should ask on SuperUser too - there may be a general answer. – Preet Sangha Sep 4 '12 at 5:10

6 Answers

up vote 176 down vote accepted

In Windows 8, you have to right-click devenv.exe and select "Troubleshoot compatibility".

  1. select "Troubleshoot program"
  2. check "The program requires additional permissions"
  3. click "Next", click "Test the program..."
  4. wait for the program to launch
  5. click "Next"
  6. select "Yes, save these settings for this program"
  7. click "Close"
share|improve this answer
2  
This is the best solution I have come across. Now I can open .sln files from windows explorer again! – Max Schilling Oct 31 '12 at 15:50
4  
Likewise, it also resolves pinned solutions being able to run as administrator. Thanks. – Bern Nov 2 '12 at 10:36
12  
You may also want to do this on the C:\Program Files (x86)\Common Files\Microsoft Shared\MSEnv\VSLauncher.exe file if you have multiple versions of Visual Studio installed. Also, the default paths to the devenv.exe files is: Visual Studio 2010 - C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe. Visual Studio 2012 - C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe – deadlydog Nov 30 '12 at 18:22
I don't think this option is available when running VS2012 in Windows 8 – MrGrigg May 1 at 17:18
1  
@MrGrigg It most definitely is working on Windows 8. I just followed these steps above and have VS2012 always running in administrator mode. – Seany84 May 1 at 20:47
show 1 more comment

After looking on Super User I found this question which explains how to do this with the shortcut on the start screen. Similarly you can do the same when Visual Studio is pinned to the task bar. In either location:

  1. Right click the Visual Studio icon
  2. Go to Properties
  3. Under the Shortcut tab select Advanced
  4. Check Run as administrator

Unlike in Windows 7 this only works if you launch the application from the shortcut you changed. After updating both Visual Studio shortcuts it seems to also work when you open a solution file from Explorer.

Update Warning: It looks like one of the major flaws in running Visual Studio with elevated permissions is since Explorer isn't running with them as well you can't drag and drop files into Visual Studio for editing. You need to open them through the file open dialog. Nor can you double click any file associated to Visual Studio and have it open in Visual Studio (aside from solutions it seems) because you'll get an error message saying There was a problem sending the command to the program. Once I uncheck to always start with elevated permissions (using VSCommands) then I'm able to open files directly and drop them into an open instance of Visual Studio.

Update For The Daring: Despite there being no UI to turn off UAC like in the past, that I saw at least, you can still do so through the registry. The key to edit is:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
EnableLUA - DWORD 1-Enabled, 0-Disabled

After changing this Windows will prompt you to restart. Once restarted you'll be back to everything running with admin permissions if you're an admin. The issues I reported above are now gone as well.

share|improve this answer
3  
If you turn off UAC, some Metro apps, like SkyDrive will no longer work. – Boomerangertanger Sep 6 '12 at 7:48
For Windows 8, the answer below by TigerShark (rightclick devenv.exe in explorer, troubleshoot..) seems like a more complete solution. – James White Dec 28 '12 at 17:50
How do you 'Go to Properties' in Windows 8? It's not an option in the start screen on my retail release of W8Pro – Clara Onager Mar 20 at 8:56
1  
@ClaraOnager Right click on the icon in the start screen and select 'Open file location'. This will open up the folder that the shortcut is saved in and then you can view it's properties from there. – Brian Surowiec Mar 21 at 6:35
@Boomerangertanger Oh no, not my metro apps! </sarcasm> – Robert Christ Apr 23 at 16:01
show 1 more comment

You can also download VSCommands for VS2012 which has a feature to change it to run as admin (as well as some other cool bits and pieces) enter image description here

share|improve this answer
1  
I installed this after I updated the shortcut permissions so I'm not sure what this does differently. Admin permissions aside this plugin has some nice features that are worth checking out on their own. – Brian Surowiec Sep 4 '12 at 16:55
1  
The VSCommands feature also works when you start a project from a taskbar shortcut's quick access menu. Brilliant stuff! – Sean Kearon Sep 6 '12 at 7:24
  1. On Windows 8 Start Menu select All Apps
  2. Right click on Visual Studio 2010 Icon
  3. Select Open File Location
  4. Right click on Visual Studio 2010 shortcut icon
  5. Click Advanced button
  6. Check the Run as Administrator checkbox
  7. Click OK
share|improve this answer

VSCommands didn't work for me and caused a problem when I installed Visual Studio 2010 aside of Visual Studio 2012.

After some experimentations I found the trick:

Go to HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers and add an entry with the name "C:\Program Files (x86)\Common Files\Microsoft Shared\MSEnv\VSLauncher.exe" and the value "RUNASADMIN".

This should solve your issue. I've also blogged about that: http://daniellang.net/always-run-visual-studio-as-administrator-in-windows-8/

share|improve this answer
totally worked for me – Maslow May 14 at 19:21

If you using Total Commander as I do, you should do the same for Total Commander to be run as admin always. Then you will be able to open sql file on double click in same SQL Server management instance, or to open any Visual Studio file on double click and not have multiple instances open.

This Troubleshoot program adds registry value to HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers for any program, so if you like to write it directly you can.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.