Hi I want to make a batch file menu, that asks \'Select app you want to install?\' for example
You want to use set /p Example below:
set /p
echo What would you like to install? echo 1 - App1 echo 2 - App2 set /p whatapp= if %whatapp%==1 ( codetoinstallapp1 ) else if %whatapp%==2 ( codetoinstallapp2 ) else ( echo invalid choice )