MagiskOnWSALocal/installer/Run.bat
Fernando Fernández a5f46350b8
Separating the install script from the build script and warn on uninstall ()
Co-authored-by: Howard20181 <40033067+Howard20181@users.noreply.github.com>
2023-01-11 20:54:39 +08:00

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
)