Created
January 12, 2024 05:15
-
-
Save saeedvir/7525e2ae88c74766db728b1365a50f6f to your computer and use it in GitHub Desktop.
schedule.cmd
This file contains hidden or 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
@echo off | |
color 0A | |
title laravel task cronjob for windows © Er.DhruvMishra | |
Echo. | |
echo Drag n Drop the artisan file of your project here | |
echo (it is located in your project folder) | |
set /p ap= | |
cls | |
:starx | |
SCHTASKS /Create /SC MINUTE /TN laravel /TR "php %ap% schedule:run" | |
pause>nul |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment