**EDIT** I remember when I made my first cd there was a small little app that you could "sleep" for x amount of seconds before going on to the next line of code. Here is an example of what I'm talking about:
CODE
ECHO.
ECHO Installing CloneDVD
ECHO Version:
ECHO Please wait...
start %systemdrive%\Programs\CloneDVD\setup.exe /S /NORESTART
start programx.exe sleep 30
ECHO Installing CloneDVD
ECHO Version:
ECHO Please wait...
start %systemdrive%\Programs\CloneDVD\setup.exe /S /NORESTART
start programx.exe sleep 30
Now, after sleeping 30 seconds I would want another program to kill the clonedvd setup, taskkill?
CODE
ECHO.
ECHO Installing CloneDVD
ECHO Version:
ECHO Please wait...
start %systemdrive%\Programs\CloneDVD\setup.exe /S /NORESTART
start programx.exe sleep 30
start taskkill clonedvdsetup.exe
ECHO Installing CloneDVD
ECHO Version:
ECHO Please wait...
start %systemdrive%\Programs\CloneDVD\setup.exe /S /NORESTART
start programx.exe sleep 30
start taskkill clonedvdsetup.exe
