This commit is contained in:
Bruce
2026-04-10 15:10:39 +08:00
parent 2c6391804e
commit 169815e88a
18 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
@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"
for /r %%i in (*.appx) do powershell add-appxpackage "%%i"
for /r %%i in (*.appxbundle) do powershell add-appxpackage "%%i"
for /r %%i in (*.msix) do powershell add-appxpackage "%%i"
for /r %%i in (*.msixbundle) do powershell add-appxpackage "%%i"
for /r %%i in (*.appinstaller) do powershell add-appxpackage "%%i"
exit /b

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
0.3.1.5
0.3.1.7