Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Console Application with task scheduler

I have created a console and I want to run it every 1-minute nonstop I try to put in a scheduler task but I think that my configuration is done badly can someone help, please? I want to finish this task thank

like image 610
user3246292 Avatar asked Feb 14 '23 22:02

user3246292


1 Answers

You can follow the tutorial here How to Create a Automated Task that Runs at a Set Time in Windows 7

The steps outlined are as follows:

  1. Open up Task Scheduler by either typing "task" into the Start Menu search bar, or by opening All Programs -> Accesories > System Tools.

enter image description here

  1. Select 'Create Basic Task' from the right hand pane and the 'Create Basic Task' Wizard will open.

enter image description here

  1. With the Wizard open, type a 'Name' and 'Description' for your new task and click Next. NOTE: The Next button will only be accessible once a 'Name' has been entered.

enter image description here

  1. Select the event/task to run DAILY and click Next.

enter image description here

  1. Select the time as 00:00 and date at which you wish the first task to start (each task afterward will run based on your selection in step 4) then click Next.

enter image description here

  1. Choose the action you with the task to execute from the list then click Next. NOTE: For your query, select 'Start a program'.

enter image description here

  1. Click 'Browse' and navigate to the executable (exe) file of the console app you wish to run then click Next. You can choose to ignore 'Add arguments' and 'Start in'.

enter image description here

  1. Review the task and make sure that you've set all your required information correctly. If satisfied click Finish.

enter image description here

  1. Click the Advanced button on the Schedule tab. There is a checkbox for Repeat task. The default is every 10 minutes. You can change that to 1 minute.

The key here is to find the advanced properties. If you are using the XP wizard, it will only offer you to launch the advanced dialog once you created the task.

like image 168
chridam Avatar answered Feb 16 '23 11:02

chridam