Heya there, Some code from my old batch-files, might help you in your requirement, or give you an idea of what to modify: @echo off TITLE Registering Installed Programs COLOR 85 ECHO. :LOOP SET Choice= SET /P Choice="Do you want to register installed programs ? (Y/N)" IF NOT '%Choice%'=='' SET Choice=%Choice:~0,1% ECHO. IF /I '%Choice%'=='Y' GOTO Auto IF /I '%Choice%'=='N' GOTO Plain ECHO Please type Y (for Yes) or N (for No) to proceed! ECHO. GOTO Loop :Plain ECHO Installed Programs were not registered >> %systemroot%\Temp\instTime.log ECHO Finished. GOTO END :Auto ECHO Open Opera browser and register it now..... start /wait %systemroot%\custom\opera7.exe ECHO Open UltraISO and register it now..... start /wait %systemroot%\custom\UltraISO.exe ECHO Finished. GOTO END :END ECHO. EXITMaybe setup a chain of .cmd files. Run a main.cmd which then calls the rest one by one.... You get the drift. Upto you to utilise if it seems good.