http://qs321.pair.com?node_id=1197722


in reply to Re^5: executing a .bat or .exe from within perl script ??
in thread executing a .bat or .exe from within perl script ??

If you do not want to wait for the exe program to finish, you can use the Windows-specific form of system (see perlport):

system( 1, "C:\\Path\\to\\that.exe" ) == 0 or warn "Couldn't launch program: $^E";