in reply to Launching GUI applications

The same way you would do it from a command line ("DOS Window"):

system("start notepad.exe"); print "Launched notepad.exe\n";

See HELP START for more documentation on the START command. This will not wait for the program to finish. If you want to wait for the program, just use

system("notepad.exe");

as usual.