can I create a batch file that will let me open Firefox,outlook and TV tuner app with one click
eg
@echo off
title Batch File Testing
echo test
echo.
echo Starting MS Paint
start mspaint
echo.
echo Starting Calculator
start calc
echo.
pause
exit
the above file opens paint and the calculator ... can I accomplish this by putting the paths for the *exe files for the apps
eg
@echo off
title Batch File Testing
echo test
echo.
echo Starting MS Paint
start mspaint
echo.
echo Starting Calculator
start calc
echo.
pause
exit
the above file opens paint and the calculator ... can I accomplish this by putting the paths for the *exe files for the apps
