I created a batch file to install a program, when it starts it aks you what version you want to install. How do I add another selection for 3.1 wihout assigning it a whole number e.g. 5?
This is what I have now...
<choice /c:234 Press "2","3",or "4" to select the version of the ARM compiler you wish to install.
if errorlevel 3 goto arm4install
if errorlevel 2 goto arm3install
if errorlevel 1 goto arm2install
This is what I have now...
<choice /c:234 Press "2","3",or "4" to select the version of the ARM compiler you wish to install.
if errorlevel 3 goto arm4install
if errorlevel 2 goto arm3install
if errorlevel 1 goto arm2install
