@echo off
:start
cls
echo.
echo 1. WeB
echo 2. WoT
echo 0. Quit
echo.
set /p choice="Enter your choice: "
if "%choice%"=="1" goto jedna
if "%choice%"=="2" goto dve
if "%choice%"=="0" exit
goto chyba
:jedna
c:
cd C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
start chrome.exe [url]https://www.facebook.com/[/url]
start chrome.exe [url]www.youtube.com/user/OlusftJarda[/url]
goto start
:dve
start C:\Games\World_of_Tanks\WOTLauncher.exe
goto start
:chyba
echo ^G^G^G
echo Invalid choice: %choice%
echo.
ping 127.0.0.1 -n 3 >nul
goto start
edit: upraveno 3x zapípání při chybě.