Windows batch file not working properly -
my batch file not executing start serial_new.exe, terminates serial_new.exe. opens , closes immediately.
echo off c: cd c:\wamp\www\mobilesms\ start serial_new.exe echo testing echo.. ping 1.1.1.1 -n 1 -w 5000 > nul taskkill /f /im serial_new.exe
try start "serial_new" serial_new.exe
start command needs title first argument.
Comments
Post a Comment