1. @echo off
    at > nul
    if %errorlevel% equ 0 (echo ok) else echo Please switch to an administrator account to run this batch!!!

  2. @echo off
    whoami /groups | find "S-1-16-12288" >nul
    if ERRORLEVEL 1 (echo [ERROR] This script has to be executed with administrator privilegs) else echo [OK]