Add files via upload

This commit is contained in:
amd64fox
2021-08-11 21:06:48 +03:00
committed by GitHub
parent 51f6b7a620
commit 6af6bea830
3 changed files with 410 additions and 0 deletions

24
Uninstall.bat Normal file
View File

@@ -0,0 +1,24 @@
@echo off
echo *****************
echo Author: @rednek46
echo Modified: @Amd64fox
echo *****************
echo Removing Patch...
if exist "%APPDATA%\Spotify\chrome_elf.dll.bak" (
del /s /q "%APPDATA%\Spotify\chrome_elf.dll" > NUL 2>&1
move "%APPDATA%\Spotify\chrome_elf.dll.bak" "%APPDATA%\Spotify\chrome_elf.dll" > NUL 2>&1
)
if exist "%APPDATA%\Spotify\config.ini" (
del /s /q "%APPDATA%\Spotify\config.ini" > NUL 2>&1
)
if exist "%APPDATA%\Spotify\Apps\xpui.bak" (
del /s /q "%APPDATA%\Spotify\Apps\xpui.spa" > NUL 2>&1
move "%APPDATA%\Spotify\Apps\xpui.bak" "%APPDATA%\Spotify\Apps\xpui.spa" > NUL 2>&1
)
echo Deletion completed.
pause