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.
|
|
In Windows 8, you have to right-click
|
|||||||||||||||||||
|
|
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:
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 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:
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. |
|||||||||||||||
|
|
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)
|
|||||||||
|
|
||||
|
|
|
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/ |
|||
|
|
|
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. |
|||
|
|
