Skip to content

Instantly share code, notes, and snippets.

@IslandOfCode
Created November 17, 2019 14:44
Show Gist options
  • Save IslandOfCode/fdac6a790958c4df64486f9896266a3d to your computer and use it in GitHub Desktop.
Save IslandOfCode/fdac6a790958c4df64486f9896266a3d to your computer and use it in GitHub Desktop.
Check admin permission in batch script
@echo off
net session >nul 2>&1
if not %errorLevel% == 0 (
echo You dont have admin right
pause.
exit
)
echo Hello, admin!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment