Tagged Questions
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?
12
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 ...
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
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#) ...
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
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 ...
5
votes
2answers
2k views
Windows 7: Taking advantage of auto-elevation to elevate my own process?
From a July 2009 Technet article entitled Inside Windows 7 User Account Control, Mark Russinovish describes that it's possible for an application running as standard user to silently elevate and gain ...
5
votes
6answers
3k views
Vista UAC, Access Elevation and .Net
I'm trying to find out if there is any way to elevate a specific function within an application. For example, I have an app with system and user settings that are stored in the registry, I only need ...
4
votes
2answers
137 views
Restart program unelevated
For some reason, my C# program needs to restart with elevated privileges. I use the following code to achieve it:
private static void RestartForPermissionsFix()
{
ProcessStartInfo processInfo = ...
4
votes
6answers
666 views
Looking for Delphi 7 code to detect if a program is started with administrator rights?
I am looking for working (obviously) Delphi 7 code so I can check whether my program is started with administrator rights.
Thanks in advance
[--- IMPORTANT UPDATE ---]
Having reviewed the code in ...
4
votes
3answers
776 views
Developing Apps with Administrator Rights in Delphi
I'm using D2010 under Windows 7 to write an app that seems to require admin rights (I think because it uses COM to communicate with a third party .exe, which also requires admin rights).
I've added ...
4
votes
1answer
195 views
Is it possible to build a .NET DLL with COM visible types without VS requiring elevation?
An assembly in a project has a type marked with ComVisible(true).
When building (non-elevated), VS tries to register that DLL and fails:
Cannot register assembly "\path\to\foo.dll" - access denied. ...
4
votes
1answer
561 views
Signed and RequireAdministrator executable being run from temp folder?
i manifested my executable as require administrator:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
...
3
votes
1answer
474 views
NSIS installer. UAC - can elevation happen only after user chooses path?
Currently I am participating in development of a NSIS installer. This installer uses the UAC plugin for elevation to be able to install to a directory inside Program Files. Now, the installer elevates ...
3
votes
2answers
497 views
Program needing elevation in Startup registry key (windows 7)
I have a program that I'd to run when the computer starts. I've put its path inside "SOFTWARE\Microsoft\Windows\CurrentVersion\Run". This is in Windows 7. When the computer starts nothing happens. I'm ...
2
votes
1answer
135 views
Setup UAC elevation takes too long
The UAC elevation of my setup (MSI) takes too long (~20 seconds).
from here I understand that this could be due to long signature test.
My setup itself is not signed so I guess something else that ...
2
votes
3answers
890 views
How to run another app as administrator on Windows XP
I used the application manifest file as described here to have a part of my application running with elevated privileges (which it needs).
So when needed, the main program just invokes a small ...
2
votes
2answers
554 views
Impersonating in .NET using Process.Start and UAC
I am trying to run programs from another .NET program that requires elevation using the impersonation option of the Process.Start (System.Diagnostics) method. The user for impersonation is a local ...
2
votes
1answer
196 views
How to determine why application is prompting for elevation
When launching my executable, Windows is prompting for elevation, when it shouldn't be.
How can i figure out why Windows is prompting me to elevate my executable on launch?
Notes:
there is no ...
2
votes
2answers
207 views
Create a process without elevation
I want to create a child process in my application that will run not inherit the parent's UAC. The parent runs as administrator, and I want the child process to a run as a simple user w/o elevation.
...
2
votes
4answers
183 views
How to install a program so it can be launched at startup with admin rights on Windows Vista/7
I read how to do it with a service, but i wanna know if it's possible with a simple application.
I'm using c#.
Thank you
2
votes
1answer
835 views
Load ActiveX DLL in Internet Explorer with elevated privileges
I have an ActiveX control that I'm loading with JavaScript in Internet Explorer. It needs to run as medium integrity under UAC in Vista and Win7. This is written in C/C++, compiled in Visual Studio.
...
1
vote
2answers
408 views
Can I speed up UAC/elevation in Wix?
When a normal user runs a Wix installer which requires elevation, there appears to be a delay of 30 seconds or more between the user clicks the "Install" button and the UAC prompt comes up. This ...
1
vote
4answers
1k views
How to allow to allow admins to edit my app's config files without UAC elevation?
My company produces a cross-platform server application which loads its configuration from user-editable configuration files. On Windows, config file ACLs are locked down by our Setup program to allow ...
1
vote
3answers
776 views
How do I create a manifest for a windows installer?
We have an installer for our application that must be downloaded and run with administrator privileges, like many other installers. However, the installer isn't named "setup.exe", so Windows doesn't ...
0
votes
1answer
259 views
Delphi Administrator rights D7 W7 [closed]
Possible Duplicates:
Delphi: Prompt for UAC elevation when needed
Delphi Administrator rights D7 W7
I'm using Delphi 7 on Windows 7. I need administrator privileges for some function in ...
0
votes
2answers
424 views
UAC or Userlevel how to overcome it!
I'm trying to programmatically restart a service from within a helper application written in C# (on .net 4.0) but I get a permission violation if I run the EXE by double clicking while right clicking ...
0
votes
3answers
695 views
Newly compiled application requires UAC/elevation?
I have a system, I set it up as a normal with UAC, and in my delphi environment I compile my project named ka.exe, I create a installshield project for it.
setup and everything completes ok!
but ...
0
votes
1answer
435 views
.NET 2.0 Process Elevation for App Installation
We have an application written in both C++ and .NET that installs for all users in the Program Files folder. This application downloads new versions of itself (as MSI installers) and spawns the new ...
0
votes
1answer
2k views
How do I create a shortcut to CMD.EXE that asks for elevation using INNO Setup?
using INNO Setup I currently have the following entry under the [ICONS] section:
Name: "{group}\My App\My App - Command Prompt"; Filename: "cmd.exe"; WorkingDir: "{app}"
This shortcut launches a ...
0
votes
1answer
350 views
.NET Embedded Manifest Crashes XP
I am embedding a manifest in a .NET exe so that it can request elevated permissions in Vista and Windows 7. The manifest that I am using is as follows:
<?xml version="1.0" encoding="UTF-8" ...