vote up 2 vote down star

I am trying to debug an application in Delphi 2007 on a Vista machine. The application was originally written for XP so it must be run with administrator privileges. I know that I could put some information into the manifest or update the code but I am looking for a quick fix that can be used in all my projects.

Does anyone know if there is an easy way to get Delphi to launch an application as administrator in Vista?

flag

69% accept rate
3  
Being written for Windows XP doesn't mean it must run with administrative privileges. There's something more to it. Whatever answer you get here will not be a "quick fix"; it will be a stop-gap measure to give you time to find the real source of your permission problem. – Rob Kennedy Oct 19 at 20:17
Exactly. There's absolutely no implication of a requirement for admin privileges in the term "written for XP". Even for XP you were able to write well-behaved apps... – Oliver Giesen Oct 21 at 10:08

3 Answers

vote up 4 vote down check

I suppose if you run Delphi under administrator privileges all child processes will run with the same privileges as Delphi itself.

link|flag
vote up 2 vote down

You might consider how your application is normally going to run - by requesting elevation. It would seem if you spawn your application at normal security, and then it spawns itself at an elevated level, then you would still be debugging the elevated executable. Then you would be debugging the actual use case.

link|flag
This is a good point. However, in my situation the code is going to run on a locked-down tablet pc running Window 2000 or XP embedded. My dev box runs Vista and I just wanted a quick and dirty way to launch the apps. – Larry Oct 19 at 19:57
vote up 1 vote down

Under Vista you can elevate to administrator privileges. This link shows you how to start an Executable from within Delphi with those.

Note that Microsoft uses the word elevate, not escalate.

The problem is: you have to restart your process for this, so you cannot debug the restarted child process (if you could debug an elevated process from a non-elevated one, that would be a potential security hole).

link|flag
I knew escalte was wrong, but couldn't remember the right one. Thanks! – Jim McKeeth Oct 19 at 21:25
@Jim: you are welcome. – Jeroen Pluimers Oct 20 at 8:14

Your Answer

Get an OpenID
or

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