Hi,
I am trying to automate the execution of a program (.exe) using a batch file. When the file runs I get a prompt to press Enter which I cannot do in the batch file.
My code is:
@echo off
start "D:\Update" update.exe
sleep 60
echo.
sleep 300
echo.
I read in a forum that echo. would do the same as press enter but it doen't seem to work.
Any help would be appreciated.
Thank you.
I am trying to automate the execution of a program (.exe) using a batch file. When the file runs I get a prompt to press Enter which I cannot do in the batch file.
My code is:
@echo off
start "D:\Update" update.exe
sleep 60
echo.
sleep 300
echo.
I read in a forum that echo. would do the same as press enter but it doen't seem to work.
Any help would be appreciated.
Thank you.