-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f0d07e7
commit ff1a79e
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@echo off | ||
echo WARNING!!! THIS FILE WILL DELETE ALL EOP FILES. MAKE BACKUPS OF ANY SCRIPTS YOU WISH TO PRESERVE FIRST BEFORE CONTUINING! | ||
|
||
set /p userResponse=Do you really want to uninstall all EOP files? (Y/N): | ||
|
||
if /i "%userResponse%"=="Y" ( | ||
echo You chose to continue. | ||
rmdir /s /q "eopData" | ||
rmdir /s /q "youneuoy_Data" | ||
rmdir /s /q "eopBattles" | ||
rmdir /s /q "eopRedistributables" | ||
DEL /F /Q "M2TWEOP GUI.exe" | ||
DEL /F /Q "d3d9.dll" | ||
DEL /F /Q "discord_game_sdk.dll" | ||
DEL /F /Q "libfbxsdk.dll" | ||
DEL /F /Q "lua5.1.dll" | ||
DEL /F /Q "M2TWEOPLibrary.dll" | ||
DEL /F /Q "openal32.dll" | ||
) else ( | ||
echo You chose to cancel. | ||
) | ||
|
||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters