можете проверить скрипт! правильный ли он?
@echo off
cls
chcp 65001 > nul
setlocal EnableDelayedExpansion
REM Check if the script is running with admin privileges
net session >nul 2>&1
if %errorLevel% == 0 (
goto menu
) else (
echo This script must be run as an administrator.
pause...