mirror of
https://github.com/LSPosed/MagiskOnWSALocal.git
synced 2025-04-25 17:59:35 +00:00
12 lines
264 B
Batchfile
12 lines
264 B
Batchfile
:: Automated Install batch script by Syuugo
|
|
|
|
@echo off
|
|
if not exist Install.ps1 (
|
|
echo "Install.ps1" is not found.
|
|
echo Press any key to exit
|
|
pause>nul
|
|
exit 1
|
|
) else (
|
|
start powershell.exe -ExecutionPolicy Bypass -File .\Install.ps1
|
|
exit
|
|
)
|