mirror of
https://github.com/SpotX-Official/SpotX.git
synced 2026-04-11 17:37:21 +10:00
25 lines
690 B
Batchfile
25 lines
690 B
Batchfile
@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
|