I would like to execute a batch file from a R script. The file is in a directory like \\network\path\to\batch\file.bat.
I know I can use the system command in R to run DOS commands but I can't simply use system("start file.bat"). So how would I best use R script to execute this batch file?