I need help. I`m programming in C Language and I want to know. How I can set my program like background process. I do not want to anyone see that this is program running at my computer. I want that program to open when I turn on my computer and run like background process. For good answers, +reps ofc. Thanks! - SeoHawk
I would recommend that you read the book The C Programming Language by Kernigham and Ritchie the founders of the C language. It is excellent and can point you in the right direction.
There are two ways to accomplish this: 1) simply copy the program (or a shortcut) to your startup directory. On my Vista Home machine it is located here: C:\Users\Ancient_Dragon\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 2) Write a Windows Services program. This is quite complicated and requires a firm grasp of C or C++ languages. There are several links that show how to do that.