Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

I've a program written in C++ which requires administrator to run it(it can't be run as user). I'm trying to run this program whenever the user log in, I tried to add a "string" to

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

and

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

but it works only with application that doesn't require administrator privileges, it has no effect on my program.

I've managed to solve it by creating a BAT file adding it to the registry, which starts my program.However, it launches the dialog which asks for Admin access. thus we can understand that I can not start it up using this method.

I guess there should be some method, for example an antivirus has administrator privileges. but it could find any thing about it.

share|improve this question

marked as duplicate by Anthony Williams, Raymond Chen, Bo Persson, Alan Stokes, Graviton Apr 5 '12 at 9:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Consider using Task scheduler, look here for details:

http://www.techrepublic.com/blog/window-on-windows/make-vista-launch-uac-restricted-programs-at-startup-with-task-scheduler/616

share|improve this answer
I need it to be launched by it self, I don't want the user to be able to cancel the startup. – Kirill Kulakov Apr 4 '12 at 20:00
@kirill Tough; the user owns the PC, you don't. Imagine if it was possible to do what you want - can you see how to write a virus that way? – Alan Stokes Apr 4 '12 at 20:27
The user can cancel any type of startup - including the one that you mentioned in the original post (just run msconfig), so this solution is equal to any other – Isso Apr 4 '12 at 20:57

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