You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
395 B
5 lines
395 B
@echo off
|
|
set SCH_INSTALL=%1
|
|
FOR %%X in (%SCH_INSTALL%) DO SET SCH_INSTALL=%%~sX
|
|
schtasks /create /tn "vtigerCRM Notification Scheduler" /tr %SCH_INSTALL%\apache\htdocs\vtigerCRM\cron\intimateTaskStatus.bat /sc daily /st 11:00:00 /RU SYSTEM
|
|
schtasks /create /tn "vtigerCRM Email Reminder" /tr %SCH_INSTALL%\apache\htdocs\vtigerCRM\modules\Activities\SendReminder.bat /sc minute /mo 1 /RU SYSTEM
|
|
|