:: :: Batch file created by www.reznix.com :: Stop by and check us out! :: @echo off :getChoice echo. echo. echo. echo Please make a selection: echo. echo [1] selection 1 echo [2] selection 2 echo [3] selection 3 echo [4] Exit echo. echo. echo. set /p Choice="Selection [1,2,3 or 4]: " echo. for %%x in (1) do if (%Choice%)==(%%x) goto choice1 for %%x in (2) do if (%Choice%)==(%%x) goto choice2 for %%x in (3) do if (%Choice%)==(%%x) goto choice3 for %%x in (4) do if (%Choice%)==(%%x) goto Close goto getChoice :choice1 :: enter some command to run goto close :choice2 :: enter some command to run goto close :choice3 :: enter some command to run goto close :: error screen :: send user here if a command in one of the choices errors out :: remember to un-comment ::cls ::echo. ::echo. ::echo. ::echo This computer is not setup for your selection: %choice% ::echo. ::echo. ::echo User: %username% Station: %clientname% ::echo. ::echo. ::echo. ::echo. ::echo. ::echo. ::pause ::cls ::goto getchoice :Close exit