This might be like something you were looking for
http://aroundcny.com/technofile/texts/delallbat97.html
This is just an example of how you could edit it to do what you want.
@echo off
goto top
:top
cls
cls
echo.
echo.
echo.
echo Choice Action
echo.
echo A Run Antivirus
echo B Backup from CD
echo H Show help
echo Q Quit without any action
echo.
choice /C:abhq /n Your choice:
If errorlevel 4 goto quit
if errorlevel 3 goto help
if errorlevel 2 goto no
if errorlevel 1 goto yes
:yes
echo Running anti-virus
echo.
echo D:\navirus.exe
goto end
:no
echo Running Backup
echo.
echo D:\ghost.exe
echo.
goto end
:help
echo.
echo Run antivirus or backup.
echo.
goto end
:quit
cls
:end