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 | |
| setlocal EnableDelayedExpansion | |
| fltmc >nul 2>&1 | |
| if errorlevel 1 ( | |
| echo This script needs admin rights. | |
| powershell -Command "Start-Process cmd -ArgumentList '/c \"%~f0\"' -Verb RunAs" | |
| exit /b | |
| ) |