I must make a new Scheduled Task to start an application on windows startup.
Just like placing it in the “Startup” folder…
But I need to create, enable and disable this task in C#.
How do I do this?
I must make a new Scheduled Task to start an application on windows startup.
Share
There is a Task Scheduler library available on codeproject.com that might do what you need: http://www.codeproject.com/KB/cs/tsnewlib.aspx
Its an older library that may or may not work with newer versions of windows. At the very least, it should point you in the right direction.