in reply to Re^4: Perl calling command prompt?
in thread Perl calling command prompt?

Aha, the real question is asked.

Just do this:

system( "c:/path_to_batfile/mybat.bat" );
No need to call cmd.exe or the like. The shell knows what you want to do with a .bat file.