Last active
September 21, 2022 07:29
-
-
Save wp126/b39483972ad2a1639a39c8241392a5c3 to your computer and use it in GitHub Desktop.
Create Cron Job in Xampp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#for create | |
schtasks /create /tn "XamppCron" /tr "D:\xampp\php\php.exe D:\xampp\htdocs\cron.php" /sc minute /mo 1 | |
#for delete | |
schtasks /delete /tn "XamppCron" | |
#for status check | |
schtasks /Query /TN "XamppCron" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment