mirror of
https://github.com/MustardChef/WSABuilds.git
synced 2024-11-13 07:05:10 +01:00
11 lines
213 B
Batchfile
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
|