• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

batch file help

blodhi74

Diamond Member
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
 
Yes, you can either specify the full path of the application to run, or you can add the path to the %PATH% variable in the script using quotes.

example:

start "C:\Program Files\Mozilla Firefox\firefox.exe"

or

set path=%path%;"C:\Program Files\Mozilla Firefox"
start firefox.exe
 
Back
Top