Tagged Questions

This tag is used for questions concerning the User Account Control (UAC) security feature of Windows Vista and Windows 7.

learn more… | top users | synonyms

21
votes
4answers
16k views

How to elevate privileges only when required?

This question applies to Windows Vista! I have an application which normally works without administrative privileges. There is one activity which does need administrative privilege but I don't want ...
19
votes
3answers
4k views

How can I detect if my process is running UAC-elevated or not?

My Vista application needs to know whether the user has launched it "as administrator" (elevated) or as a standard user (non-elevated). How can I detect that at run time?
17
votes
6answers
8k views

How to detect whether Vista UAC is enabled?

I need my application to behave differently depending on whether Vista UAC is enabled or not. How can my application detect the state of UAC on the user's computer?
15
votes
4answers
11k views

TortoiseSvn and Windows Server 2008 user account control

Here is the question: Can TortoiseSvn work on Windows 2008 without turning off User Account Control? Here is the story: I just moved my test server to Windows 2008 and I am having problems with ...
15
votes
3answers
4k views

Request UAC elevation from within a Python script?

I want my Python script to copy files on Vista. When I run it from a normal cmd.exe window, no errors are generated, yet the files are NOT copied. If I run cmd.exe "as administator" and then run my ...
15
votes
6answers
9k views

Request Windows Vista UAC elevation if path is protected?

For my C# app, I don't want to always prompt for elevation on application start, but if they choose an output path that is UAC protected then I need to request elevation. So, how do I check if a path ...
13
votes
5answers
9k views

Delphi: Prompt for UAC elevation when needed

We need to change some settings to the HKEY_LOCAL_MACHINE at runtime. Is it possible to prompt for uac elevation if needed at runtime, or do I have to launch a second elevated process to do 'the ...
13
votes
3answers
15k views

How to prevent “This program might not have installed correctly” messages on Vista

I have a product setup executable that copies some files to the user's hard drive. It's not a typical installer in the normal sense (it doesn't add anything to the Start Menu or Program Files ...
12
votes
2answers
3k views

Program Compatibility Assistant thinks my app is an installer

I have created a .NET C# WinForms application on Win 7 RTM x64, which let's say I have called DataInstaller. When I run this program outside of the debugger (just an empty form with no functionality ...
12
votes
3answers
4k views

C#: Detect if running with elevated privileges?

I have an application that needs to detect whether or not it is running with elevated privileges or not. I currently have code set up like this: private static bool _isAdministrator() { ...
11
votes
1answer
266 views

What are the UAC implementation best practices? (.NET)

I'm thinking about developing an application that should run as standard user most of the time, but for certain operations, elevated administrative access will be required. The user expecience should ...
11
votes
2answers
1k views

How to prevent Vista from requiring elevation on patch.exe?

[I'm sorry that this isn't directly a programming question. But I have recently switched to a new Vista machine where I am keeping UAC enabled (please don't tell me to disable it, it's not an ...
11
votes
2answers
8k views

Mark MSI so it has to be run as elevated Administrator account

I have a CustomAction as part of an MSI. It MUST run as a domain account that is also a member of the local Administrators account. It can't use the NoImpersonate flag to run the custom action as NT ...
10
votes
4answers
1k views

Where to put common writable application files?

I thought that CSIDL_COMMON_APPDATA\company\product should be the place to put files that are common for all users of the application and that the application can modify, however, on Vista this is a ...
9
votes
9answers
495 views

What parts of .NET require administrative privileges to be executed?

Which parts of the framework require a user to be more than a Standard User? The reason I'm asking is because I'm trying to compile a list of possible issues with our existing applications when ...
9
votes
1answer
4k views

Windows 7 and Vista UAC - Programatically requesting elevation in C#

I have a program that only requires elevation to Admin on very rare occasions so I do not want to set-up my manifest to require permanent elevation. How can I Programatically request elevation only ...
9
votes
2answers
2k views

How do you de-elevate privileges for a child process

I know how to launch a process with Admin privileges from a process using: proc.StartInfo.UseShellExecute = true; proc.StartInfo.Verb = "runas"; where proc is a System.Diagnostics.Process. But how ...
9
votes
4answers
2k views

Windows batch file starting directory when 'run as admin'

I have a batch file which is in a directory and must be run from there as well because it updates files within this directory. This works perfectly fine, except when the user runs the batch file as ...
9
votes
5answers
10k views

Requested registry access is not allowed

I'm writing a tweak utility that modifies some keys under HKEY_CLASSES_ROOT. All works fine under Windows XP and so on. But I'm getting error Requested registry access is not allowed under Windows 7. ...
9
votes
3answers
5k views

How to UAC elevate a COM component with .NET

I've found an article on how to elevate a COM object written in C++ by calling CoCreateInstanceAsAdmin. But what I have not been able to find or do, is a way to implement a component of my .NET (c#) ...
8
votes
1answer
452 views

The UAC prompt shows a temporary random Program Name for msi, can the correct name be displayed?

I'm building an MSI installer for windows and sign the installer using signtool. When I run the .msi to test it, the UAC (User Account Control) prompt shows up to ask me if I want to allow the ...
8
votes
1answer
1k views

How do I avoid UAC when my EXE file name contains the word “update”?

I noticed the following phenomenon: An executable built with Delphi 7 and part of the name including "Update" (e.g. "UpdateMyApp.exe") causes UAC to step in to display a warning like "do you want to ...
8
votes
5answers
3k views

Disabling UAC programmatically

Is it possible to programmatically disable UAC in Vista? Or, can I make my application run unrestricted by the UAC setting in any way? FYI, the application needs to mount hard drives on the fly, which ...
8
votes
21answers
2k views

When developing, do you turn off UAC in Vista?

I didn't upgrade to Vista until May or so and one of the things I've always heard developers I know in real life say is "first thing you should do is turn off that UAC crap" Well, I've left it on ...
7
votes
1answer
190 views

How to correctly implement “As Administrator” or “Run As Administrator” in .NET application for selected operations?

I'm looking for correct way to allow elevating privileges for selected operations. Something similar many products offer. For example if you have UAC turned on and you are using Total Commander ...
7
votes
3answers
2k views

How to run a program automatically as admin on Windows startup?

I created my own parental control app to monitor my kids activity. The app's only GUI is a task bar icon. The program is installed as admin. I'd like this program to be started up automatically as ...
7
votes
1answer
354 views

Failure to create elevation COM object on Windows Seven

I am developing a COM surrogate object in C, it will be used by my applications to call the UAC elevation dialog for certain actions that require administrative rights. The plan is to make this it ...
7
votes
1answer
283 views

UAC and elevation prompt pattern

I've read several questions regarding UAC and privilege elevation but I've not found a satisfactory/comprehensive answer. I have this scenario: on Windows 6 or above, when the user opens a ...
7
votes
4answers
5k views

Process.Start with different credentials with UAC on

I am trying to start another process with Process.Start running under different credentials with the UAC turned on. I get the following error: System.ComponentModel.Win32Exception: Logon ...
7
votes
3answers
1k views

Permissions issue when publishing to WMI under network service account

I'm adding WMI publishing to a .net framework 3.5 based windows service that is running under the 'network service' account. According to a document I came across on MSDN, the 'network service' ...
7
votes
4answers
4k views

Embedding an application manifest into a VB6 exe

I have recently gone through a bunch of standalone utility apps written in VB6 to make sure that registry virtualization is turned off for Windows Vista and above. I created a standalone manifest file ...
7
votes
2answers
1k views

How do I get around application scope settings being read-only?

What use are they if they cannot be altered from their default values anyway? Rhetorical question. First, what's the best way to circumvent the Settings system and write to the application scope ...
7
votes
6answers
10k views

Java: run as administrator

Is there a way in Java to ask the system to get control over administrator functionality. Of course without doing: Right click on the exe -> run as admin. What I want is that there comes a frame from ...
7
votes
4answers
2k views

Detecting registry virtualization

I have a set of C# (v2) apps and I am struggling with registry virtualization in Win7 (and to a lesser extent Vista). I have a shared registry configuration area that my applications need to access ...
7
votes
2answers
3k views

How to run NOT elevated in Vista (.NET)

I have an application that I have to run as Administrator. One small part of that application is to start other applications with Process.Start The started applications will also be run as ...
6
votes
2answers
167 views

2 Identical Programs; Only 1 asks for elevation

I am having an interesting problem when compiling my programs on win32 (mingw). I have 2 identical projects, both created in C::B. When compiling one, it runs just fine without requiring elevated ...
6
votes
5answers
950 views

Requesting administrator privileges at run time

Is it possible to get a C++ application running in Windows to request administrator privileges from the operating system at run time? I know it can be done at compile time, but can't seem to find ...
6
votes
4answers
1k views

How do I integrate UAC into my VB6 program?

I need some code that will add the admin rights icon to command buttons and display the prompt when such buttons are clicked. How can I do this in VB6? Some actions require admin rights because they ...
6
votes
4answers
1k views

Windows 7 Do not Allow me Edit files in Common Application Data Folder

I want to store some files and edit them for my software in Common Application Data under windows 7 , I do not know why Windows 7 do not allow My software tho change files unless I run as ...
6
votes
6answers
235 views

Automatically invoking gksudo like UAC

This is about me being stressed by playing the game "type a command and remember to prepend sudo or your fingers will get slapped". I am wondering if it is possible somehow to configure my Linux ...
6
votes
3answers
4k views

Windows Vista/Win7 Privilege Problem: SeDebugPrivilege & OpenProcess

Everything I've been able to find about escalating to the appropriate privileges for my needs has agreed with my current methods, but the problem exists. I'm hoping maybe someone has some Windows ...
6
votes
2answers
560 views

CRXIR2 doesn't work with VS2010 on Windows 7 nor on Vista

We're upgrading from VS2005 to VS2010. We are almost there but there is a problem with Crystal Reports. We use the RDC (COM-based) component within our C++ application. On Windows 7 or on VISTA, I ...
6
votes
2answers
487 views

How elevate and get admin rights on-demand in a .NET application?

I have an .NET application which is run with default rights as the current user, then at some point I need to perform an action which requires admin rights. How can I get admin rights on-demand in a ...
6
votes
2answers
2k views

How do I deploy applications in run as administrator mode?

How Do I deploy applications so that they require administrator rights without the end-user doing that by hand? I use Delphi 2009 to build the application.
6
votes
1answer
3k views

starting a UAC elevated process from a non-interactive service (win32/.net/powershell)

I'm using a thrid party Windows service that handles some automation tasks by running scripts and executables using CreateProcessAsUser(). I'm running into problems on Windows Server 2008 due to UAC ...
6
votes
8answers
1k views

Automatic program update and Windows 7

We have a suite of programs that check for new versions at startup, and then download new versions to run if required. This is obviously a problem in Windows 7, when it is locked down as a 'standard ...
6
votes
2answers
6k views

Write in “ProgramData” folder (W7 and Vista) .NET

I install my app under "Program Files" directory. And I install data, under "ProgramData" directory: Environment.SpecialFolder.CommonApplicationData In programData I have created folder to save ...
6
votes
1answer
1k views

How to sign an installer to prevent Vista's UAC warning

I have an app that I need to distribute and want to sign it so I can avoid the UAC warnings in vista. Currently I see this... I am using visual studio to create the installer but the app was not ...
6
votes
2answers
2k views

Vista UAC - Trouble Mapping Network Drives

We have an application that programmatically maps network drives. On Vista with UAC on, we get some strange issues. Our application maps the drive non-elevated, so if the user browses explorer and ...
6
votes
3answers
3k views

UAC and Java

Is it possible to ask for elevated permissions from within a Java Application? Suggestions I've seen seem to all be centered around running an external executable or setting up a manifest to request ...

1 2 3 4 5 12