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

Popular posts from this blog

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -