-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlauncher.bat
36 lines (31 loc) · 839 Bytes
/
launcher.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
color 0A
MODE CON: COLS=32 LINES=8
cls
if exist replacer.bat del replacer.bat
if not exist bin mkdir bin
rmdir /s /q .\doc\
call :MIGRATEFILES
call :UPDATE
exit
:MIGRATEFILES
cls
title=Migrating Steam Files
exit /b
:UPDATE
cls
if not exist .\bin\wget.exe call :DOWNLOADWGET
.\bin\wget.exe https://raw.githubusercontent.com/MarioMasta64/EverythingPortable/master/launch_steam.bat
if exist launch_steam.bat echo del launcher.bat > replacer.bat
if exist launch_steam.bat echo start launch_steam.bat >> replacer.bat
if exist launch_steam.bat echo exit >> replacer.bat
start replacer.bat
exit /b
:DOWNLOADWGET
cls
title=README README README README
echo "THE PROJECT HAS BEEN MERGED INTO"
echo "https://github.com/MarioMasta64/EverythingPortable/releases/latest/"
echo "I DONT KNOW WHY YOU STILL DOWNLOADED THIS FILE."
pause
exit