mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-26 20:25:58 +00:00
Create UpdateEmulator.bat
This commit is contained in:
parent
c7195d23ee
commit
e99c9ae217
1 changed files with 43 additions and 0 deletions
43
Data/UpdateEmulator.bat
Normal file
43
Data/UpdateEmulator.bat
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
@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/archive/refs/heads/win32.zip
|
||||||
|
"Updater/7z.exe" x win32.zip
|
||||||
|
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
|
Loading…
Add table
Add a link
Reference in a new issue