Create a service or console app that runs in the background?
I want to create a .net app that runs every time at startup and runs in the background like a service. I am not trying to make a sneaky app or spyware, just a background process.
My concern with making a service is users have to know how to log in to the service that first time and set it up. If the app were run by lot's of people that would probably fail many times.
Is there an easy way to just pass the current user as the user for the service and automatically set the servive up?
OR
Can I create a console app and some how set it to be transparent? Should not be difficult to move it to the start up folder and to make it run all the time. I just wouldn't want users to see it on the taskbar.
Maybe there is some other option I am not thinking of. Simple is best.