0

There is some one can tell me how to develop an application which launches automatically when you start the computer using C++/Qt.

sjdowling
  • 2,994
  • 2
  • 21
  • 31
Mouadh
  • 1
  • 1
  • 1
    There are three ways to start programs automatically, and only one involves programming. The ways are: [Add it to the "Startup" folder](http://windows.microsoft.com/en-us/windows/run-program-automatically-windows-starts#1TC=windows-7); Add to a special key in the registry, don't remember which one exactly right now; The third way is to make your program a *service*. – Some programmer dude Jul 09 '15 at 08:49
  • You can refer to a related [post](http://stackoverflow.com/questions/9534415/run-application-on-startup) on this topic – techneaz Jul 09 '15 at 08:55
  • Thanks a lot these answers helped me very much. – Mouadh Jul 09 '15 at 09:32

1 Answers1

1

See this description by Microsoft. Just place a link to your application in the Autostart folder of Windows. You don't have to change anything in your application.

nv3
  • 400
  • 4
  • 9
  • While links are appreciated, they should not be the sole content of your answer. Please summarize the relevant part. – MSalters Jul 09 '15 at 09:42