w10install/tools/check-for-admin.cmd
Michael H.G. Schmidt 501dcc9e40 check for admin
2022-11-13 21:44:10 +01:00

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.