Is there a command or syntax I can use to gracefully restart the roadrunner outside the skin, in a command line? thanks...
Printable View
Is there a command or syntax I can use to gracefully restart the roadrunner outside the skin, in a command line? thanks...
You can use Autoit to write a simple script that will close road runner (something like WinClose(xxx) then the next line would just run the roadrunner exe. Have a look at the Autoit forums/tutorial
In your rr folder you will find a exec.exe. All you need to do to accomplish this is run the exec.exe with a parameter of RELOADRR.
Example:
exec.exe RELOADRR
You can use it basically as a CLI for RR. You can also string cmds together.. exec.exe AUDIO||WAIT;3||LIST ... would load the audio screen, wait 3 secs, then load the audio browser screen.
:)
thanks for the quick reply... i tried the exec portion and it works wonderfully... i'm also looking at autoit as you could do so much automation stuff outside of rr as well