Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an equivalent to cron in Windows?

Tags:

php

windows

cron

I want to know if there is an equivalent cron in Windows and how I can use it programmatically using PHP.

like image 889
pradeepa Avatar asked Mar 01 '23 02:03

pradeepa


1 Answers

Windows has the Scheduled Tasks control panel applet (or management console plug-in on later versions of Windows) but you can also access it via schtasks.exe if you want to automate it from the command line.

In addition, you can also use at from the command line to schedule a task.

like image 101
paxdiablo Avatar answered Mar 05 '23 15:03

paxdiablo