dolphin/Data/Updater/UpdateEmulator.bat
2023-04-21 17:00:51 -04:00

43 lines
885 B
Batchfile

@echo off
title Mario Party Netplay Updater Updater
:choice
set /P c=Are you sure you want to continue[Y/N]?
if /I "%c%" EQU "Y" goto :Start
if /I "%c%" EQU "N" goto :Exit
goto :Exit
:Start
TASKKILL /IM "Dolphin-MPN.exe" /F
"Updater/wget.exe" https://github.com/MarioPartyNetplay/Dolphin-MPN-src/releases/latest/download/DolphinMPN-win32.7z
"Updater/7z.exe" x DolphinMPN-win32.7z
cd User\
move Config ..\
move GameSettings ..\
move GC ..\
move GBA ..\
move Load ..\
move Wii ..\
cd ..\
rmdir QtPlugins /s /q
rmdir Sys /s /q
rmdir User /s /q
cd Dolphin-MPN
move QtPlugins ..\
move Sys ..\
move User ..\
move "Dolphin-MPN.exe" ..\
move "DolphinTool.exe" ..\
move "DSPTool.exe" ..\
cd ..\
rmdir Dolphin-MPN-win32 /s /q
DEL win32.zip
rmdir User\Load /s /q
move Config User\
move GameSettings User\
move GC User\
move GBA User\
move Load User\
move Wii User\
start Dolphin-MPN
:Exit
EXIT