This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
ECHO [Info] Checking admin rights | |
NET SESSION | |
CALL :CHECK_ERROR_ECHO [Error] You need admin rights to run this batch file | |
IF %ERRORLEVEL% NEQ 0 ( | |
TIMEOUT 5 | |
EXIT | |
) | |
ECHO [Info] Checking if chocolatey is installed... |