I have a windows application in Dot-net which consists of various Analytics tests. When user select a particular test(Checkbox) and submit it (clicking the button) then at the back-end SQL query gets executed and user gets a result-set of that particular test.
Now a requirement is, user will select a particular test and will give a time-stamp (time at which test will run) to get the output at his email ID using auto scheduler (without any user intervention with application). Auto scheduler will get triggered at specified time and will run the specific selected tests.
How to implement Auto scheduler with Windows application? I am trying to create Windows service in Dot-net but issue is how this service get the instance of Windows application and how it will run the selected tests using scheduler approach?
As per my understanding, I can run only script file using scheduler hence how to achieve this auto-scheduling of these tests of Windows application in Dot-net.