Skip to content

trinker/Make_Task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Make_Task

A Minimal Example for Scheduling Windows Tasks with R

Also see:

Update

Using...

@echo off
R CMD BATCH C:\Users\Tyler\Desktop\Make_Task\task.R

makes strong assumptions about where R is located and if it's on the user's path. As @apwheele points out using the full path name to run a batch file is more reliable.

@echo off
"C:\R\R-3.2.2\bin\x64\R.exe" CMD BATCH C:\Users\Tyler\Desktop\Make_Task\task.R

If the path of your R file has spaces in it, make sure to enclose the path in quotes otherwise the code won't run:

@echo off
"C:\R\R-3.2.2\bin\x64\R.exe" CMD BATCH "C:\Users\Tyler\Desktop\Some Other Path\task.R"

About

A minimal Example for Scheduling Windows Tasks with R

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published