w10install/tools/check-for-admin.cmd

12 lines
183 B
Batchfile
Raw Normal View History

2022-11-13 21:44:10 +01:00
@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.