I\'m looking for an open source/free task scheduler for Windows 7 (development machine) that will allow me to schedule tasks (HTTP requests to a web service) to run every x seconds.
In my windows task scheduler, I have scheduled a task to run a c# console application executable on a daily basis. This application sends some data to the database and then sends an email.
I have created a batch file with the following line: forfiles /p L:\\percepsrvr\\SQL开发者_如何学Go /s /m *.bak /d -4 /c \"cmd /c del /q @PATH \"
i want to send scheduled emails to all of my users at specific time every day! which event or which place should i use for sending 开发者_高级运维them in code behind?
I have a regular task that has to be executed once per day (but only once). Currently this is done with a @Schedule annotation.
I need to create a task for task scheduler from c# code using a user and a password for creating it.
Does anyone know how to create an installation project using Visual Studio 2010 that creates a Windows Scheduler task?I\'m building an installer for a Console Application that needs to run every X min
I am returning 7 URL\'s that I retrieve from a Text document on a remote server. The URL\'s are links to images that I want to then download and put into a cache.These URL\'s will change every week.
Just like the title says here is a sample of the command that I\'m trying to execute in windows command line:
In my application a registered user\'s profile should expire after 3 mont开发者_C百科hs from the registration date. I need to check and set the status of users to expired in DB every day atmidnight. H