mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-26 18:20:42 +00:00
125 lines
3.2 KiB
Batchfile
125 lines
3.2 KiB
Batchfile
@echo off
|
|
pushd "%~dp0"
|
|
|
|
echo.
|
|
echo :: Checking For Administrator Elevation...
|
|
echo.
|
|
timeout /t 1 /nobreak > NUL
|
|
openfiles > NUL 2>&1
|
|
if %errorlevel%==0 (
|
|
echo Elevation found! Proceeding...
|
|
) else (
|
|
echo :: You are NOT running as Administrator
|
|
echo.
|
|
echo Right-click and select ^'Run as Administrator^' and try again.
|
|
echo Press any key to exit...
|
|
pause > NUL
|
|
exit
|
|
)
|
|
|
|
set PATH=%PATH%;%PROGRAMDATA%\chocolatey\lib\adb\tools\platform-tools\;%PROGRAMFILES%\Git\cmd;%PROGRAMDATA%\chocolatey\bin
|
|
|
|
goto menu
|
|
|
|
:menu
|
|
cls
|
|
echo.
|
|
echo :: Easy install for ALAS
|
|
echo.
|
|
echo This script will install Python 3.7.6 + requirements.txt + ADB + GIT + CHOCOLATEY
|
|
echo.
|
|
echo :: By whoamikyo
|
|
echo.
|
|
echo 1. Essentials programs
|
|
echo 2. Clone repository
|
|
echo 3. Python 3.7.6 + requirements.txt
|
|
echo.
|
|
echo Install in order
|
|
echo.
|
|
echo :: Type a 'number' and press ENTER
|
|
echo :: Type 'exit' to quit
|
|
echo.
|
|
|
|
set /P menu=
|
|
if %menu%==1 GOTO programs
|
|
if %menu%==2 GOTO clone
|
|
if %menu%==3 GOTO python
|
|
if %menu%==exit GOTO EOF
|
|
|
|
else (
|
|
cls
|
|
echo.
|
|
echo :: Incorrect Input Entered
|
|
echo.
|
|
echo Please type a 'number' or 'exit'
|
|
echo Press any key to retrn to the menu...
|
|
echo.
|
|
pause > NUL
|
|
goto menu
|
|
)
|
|
|
|
|
|
:programs
|
|
cls
|
|
echo.
|
|
echo :: Checking For Internet Connection...
|
|
echo.
|
|
timeout /t 2 /nobreak > NUL
|
|
|
|
ping -n 1 archlinux.org -w 20000 >nul
|
|
|
|
if %errorlevel% == 0 (
|
|
echo Internet Connection Found! Proceeding...
|
|
) else (
|
|
echo :: You are NOT connected to the Internet
|
|
echo.
|
|
echo Please enable your Networking adapter and connect to try again.
|
|
echo Press any key to retry...
|
|
pause > NUL
|
|
goto packages
|
|
)
|
|
cls
|
|
echo.
|
|
echo :: Installing Packages...
|
|
echo.
|
|
timeout /t 1 /nobreak > NUL
|
|
|
|
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
|
|
|
|
@powershell -NoProfile -ExecutionPolicy Bypass -Command "choco install -y --force --allow-empty-checksums adb git"
|
|
|
|
|
|
goto menu
|
|
|
|
:python
|
|
cls
|
|
echo.
|
|
echo :: Installing Python 3.7.6 + requirements.txt
|
|
echo.
|
|
echo.
|
|
set ROOT=%~dp0AzurLaneAutoScript
|
|
set FILE_URL="https://gitlab.com/whoamikyo/alas-venv/-/raw/master/python.zip"
|
|
set FILE_DEST=%ROOT%\pythonpackage.zip
|
|
if not exist %ROOT% (
|
|
mkdir %ROOT%
|
|
)
|
|
if not exist "%FILE_DEST%" (
|
|
echo Downloading with powershell: %FILE_URL% to %FILE_DEST%
|
|
powershell.exe -command "$webclient = New-Object System.Net.WebClient; $url = \"%FILE_URL%\"; $file = \"%FILE_DEST%\"; $webclient.DownloadFile($url,$file);"
|
|
echo Expanding with powershell to: %ROOT%
|
|
powershell -command "$shell_app=new-object -com shell.application; $zip_file = $shell_app.namespace(\"%FILE_DEST%\"); $destination = $shell_app.namespace(\"%ROOT%\"); $destination.Copyhere($zip_file.items())"
|
|
) else (
|
|
echo "pythonpackage.zip already downloaded, delete to re-download"
|
|
)
|
|
|
|
goto menu
|
|
|
|
:clone
|
|
echo Cloning repository
|
|
git clone https://github.com/LmeSzinc/AzurLaneAutoScript.git
|
|
:: timout
|
|
PowerShell -Command "Start-Sleep -s 10" > nul 2>&1
|
|
:: killing adb server
|
|
call adb kill-server > nul 2>&1
|
|
|
|
goto menu |