vzli_izv, тогда можно и ещё сократить, указав вместо:
Код:
Echo 1
Echo 2
Echo 3
текст в самой команде «choice.exe» параметром «/m», наподобие (не проверялось — командная строка для «choice.exe» из комплекта Resource Kit'ов для Windows 2000 отличается от таковой для Windows 7):
Код:
@echo off
setlocal enableextensions enabledelayedexpansion
choice.exe /c:FWE /t 5 /d F /m "[F]ull screen mode (default choice after 5 seconds), [W]indow mode or [E]xit. Select one of: "
call :Choice%errorlevel%
endlocal
exit /b 0
:Choice1
start "" "E:\003 Games\CS\hl.exe" -game cstrike -full -width 1920 - height 1080 -dxlevel 7 -nojoy -freq 100 -numericping
exit /b 0
:Choice2
start "" "E:\003 Games\CS\hl.exe" -game cstrike -win -width 1680 - height 1050 -dxlevel 7 -nojoy -freq 100 -numericping
exit /b 0
:Choice3
exit /b 0