12 lines
183 B
Batchfile
12 lines
183 B
Batchfile
@echo off
|
|
|
|
net session >nul 2>&1
|
|
if NOT %ERRORLEVEL% == 0 (
|
|
echo ERROR: User has NO ADMINISTRATOR rights!
|
|
pause
|
|
exit /b
|
|
)
|
|
|
|
echo OK. User is an ADMINISTRATOR.
|
|
echo.
|