mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
13 lines
450 B
Batchfile
13 lines
450 B
Batchfile
@echo off
|
|
if exist "%SystemRoot%\SysWOW64" path %path%;%windir%\SysNative;%SystemRoot%\SysWOW64;%~dp0
|
|
bcdedit >nul
|
|
if '%errorlevel%' NEQ '0' (goto UACPrompt) else (goto UACAdmin)
|
|
:UACPrompt
|
|
%1 start "" mshta vbscript:createobject("shell.application").shellexecute("""%~0""","::",,"runas",1)(window.close)&exit
|
|
exit /B
|
|
:UACAdmin
|
|
cd /d "%~dp0"
|
|
|
|
set SCRIPT_DIR=%~dp0
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%ArmInstall.ps1"
|
|
pause |