Good Day, I have a .bat file that run a specific application then after 5 seconds it will close/kill it.
I having right now due to it successfully open the application t
You can use Start /b command.
@echo off cd "C:\Program Files (x86)\Aspera\Point-to-Point\bin\" Start "" /b asperascp.exe timeout /T 5 /nobreak >nul taskkill /IM asperascp.exe /F