bnosac / taskscheduleR

Schedule R scripts/processes with the Windows task scheduler.
330 stars 72 forks source link

Can not create the task #30

Closed sandeshregmi closed 6 years ago

sandeshregmi commented 6 years ago

[1] "ERROR: Invalid value for /D option."
[2] "Type \"SCHTASKS /CREATE /?\" for usage." attr(,"status") [1] 16389

Warning message: running command 'schtasks /Create /TN "SUAM_4_1" /TR "cmd /c C:/PROGRA~1/R/R-32~1.5/bin/Rscript.exe \"U:/ModelSchedules/taskR.R\" >> \"U:/ModelSchedules/taskR.log\" 2>&1" /SC MONTHLY /ST 03:00 /SD "2017-11-20" /D /M ' had status 16389

library(taskscheduleR) SUAM_4_1_script<- "U:/ModelSchedules/taskR.R" taskscheduler_create(taskname = "SUAM_4_1", rscript = SUAM_4_1_script, schedule = "MONTHLY", startdate = as.Date(cut(Sys.Date(), "month"))+19, starttime = "03:00" )

jwijffels commented 6 years ago

When you use monthly, you have to specify on which day of the month you want to run it. As in

taskscheduler_create(taskname = "SUAM_4_1",
                     rscript = SUAM_4_1_script,
                     schedule = "MONTHLY",
                     startdate = format(as.Date(cut(Sys.Date(), "month"))+19, "%d/%m/%Y"),
                     starttime = "03:00",
                     days = "1",
)
sandeshregmi commented 6 years ago

Thank you. Is there a way to see the list of scheduled tasks?

On Sat, Nov 18, 2017 at 1:54 PM, jwijffels notifications@github.com wrote:

When you use monthly, you have to specify on which day of the month you want to run it. As in

taskscheduler_create(taskname = "SUAM_4_1", rscript = SUAM_4_1_script, schedule = "MONTHLY", startdate = format(as.Date(cut(Sys.Date(), "month"))+19, "%d/%m/%Y"), starttime = "03:00", days = "1", )

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/bnosac/taskscheduleR/issues/30#issuecomment-345466910, or mute the thread https://github.com/notifications/unsubscribe-auth/AREP5BDvCW43qUp4WFjaRL2-DJOfiiXUks5s3zX_gaJpZM4QiQET .