check for admin

This commit is contained in:
Michael H.G. Schmidt 2022-11-13 21:44:10 +01:00
parent 4c352bf281
commit 501dcc9e40

11
tools/check-for-admin.cmd Normal file
View File

@ -0,0 +1,11 @@
@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.