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 admin user on Windows startup, so that standard users cannot kill it from task manager.

I can create a registry key at:

HKLM\Software\Microsoft\Windows\CurrentVersion\Run

to make it run automatically when Windows starts up. The problem is that the program is started as the logged in (standard) user.

How can I make it run in an elevated mode? Is this possible at all in Win7?

link|improve this question

58% accept rate
feedback

3 Answers

You need to plug it into the task scheduler, such that it is launched after login of a user, using a user account that has administrative access on the system, with the highest privileges that are afforded to processes launched by that account.

Sorry, but I'm sitting on a Mac typing this so I can't forward you on screen shots.

This is the implementation that is used to autostart processes with administrative privileges when logging in as an ordinary user.

I've used it to launch the 'OpenVPN GUI' helper process which needs elevated privileges to work correctly, and thus would not launch properly from the registry key.

link|improve this answer
thank you very much for the info. I'll try it and see how it works. – miliu Mar 25 '11 at 2:26
feedback

This is not possible.
However, you can create a service that runs under an administrative user.

The service can run automatically at startup and communicate with your existing application.
When the application needs to do something as an administrator, it can ask the service to do it for it.

Remember that multiple users can be logged on at once.

link|improve this answer
thank you very much for prompt answer. Actually, I did try to run the app from a Window Service, but couldn't make it work. I could see the program in the task manager (as SYSTEM user), but the icon is not showing up in the taskbar. When I add Verb="runas" to StartInfo, I got an exception "Not enough storage is available to process this command". I guess that may be because there is no way to popup a GUI to ask user for confirmation. – miliu Mar 25 '11 at 2:24
2  
@miliu: A service cannot interact with the user. You need to make to programs that communicate with eacother. – SLaks Mar 25 '11 at 2:32
feedback
schtasks /create /sc onlogon /tn MyProgram /rl highest /tr "exeFullPath"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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