Executes an external program or opens a file with an optional parameter.
run(filepath) run(filepath, parameters)
Run notepad.exe
run("notepad.exe");
Shutdown Windows
run("shutdown.exe", "-s -t 0");
Open a text file
run("C:/documents/note.txt");