Learn R Programming

taskscheduleR (version 1.8)

taskscheduler_stop: Stop the run of a specific task which is running in the Windows task scheduler.

Description

Stop the run of a specific task which is running in the Windows task scheduler.

Usage

taskscheduler_stop(taskname)

Value

the system call to schtasks /End

Arguments

taskname

the name of the task to stop. See the example.

Examples

Run this code
if (FALSE) {
myscript <- system.file("extdata", "helloworld.R", package = "taskscheduleR")
taskscheduler_create(taskname = "myfancyscript", rscript = myscript, 
 schedule = "ONCE", starttime = format(Sys.time() + 10*60, "%H:%M"))

taskscheduler_runnow("myfancyscript")
Sys.sleep(5)
taskscheduler_stop("myfancyscript")


taskscheduler_delete(taskname = "myfancyscript")
}

Run the code above in your browser using DataLab