w10install/tools/check-for-admin.cmd

12 lines
180 B
Batchfile
Raw Permalink 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
2022-11-13 22:12:39 +01:00
exit
2022-11-13 21:44:10 +01:00
)
echo OK. User is an ADMINISTRATOR.
echo.