1.

Solve : Programming from within a Batch File. I run Vista?

Answer»

I have made a Menu Batch file and I want TWO of the choices on my menu to be: Open Internet Explorer and the other to be: Open Firefox. How WOULD I do that ? @echo off
:loopchoice
Echo 1 Open in Firefox
Echo 2 Open in Internet Explorer
set /p choice=Option:
if "%choice%"=="1" GOTO ff
if "%choice%"=="2" goto ie
cls
echo Error: Incorrect Option
goto loopchoice
:ff
commands
:ie
commands

There.



Discussion

No Comment Found