WSABuilds/MagiskOnWSAOld/installer/Run.bat
2024-03-31 16:39:15 +01:00

11 lines
213 B
Batchfile

@echo off
cd "%~dp0"
if not exist Install.ps1 (
echo "Install.ps1" is not found.
echo Press any key to exit
pause>nul
exit 1
)
start powershell.exe -ExecutionPolicy Bypass -File .\Install.ps1
exit