mirror of
https://github.com/mrpond/BlockTheSpot.git
synced 2025-05-19 15:54:13 +02:00
* Alpha versions can now be swapped to the Old UI which works with the adblocker with the BlockTheSpot.bat * Fixed a serious bug in uninstaller.bat which deletes main files on certain conditions.
26 lines
816 B
Batchfile
26 lines
816 B
Batchfile
@echo off
|
|
echo *****************
|
|
echo Author: @rednek46
|
|
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
|
|
) else (
|
|
echo done
|
|
)
|
|
|
|
if exist "%APPDATA%\Spotify\Apps\zlink.spa.bak" (
|
|
del /s /q "%APPDATA%\Spotify\Apps\zlink.spa" > NUL 2>&1
|
|
move "%APPDATA%\Spotify\Apps\zlink.spa.bak" "%APPDATA%\Spotify\Apps\zlink.spa" > NUL 2>&1
|
|
) else (
|
|
echo done
|
|
)
|
|
|
|
if exist "%APPDATA%\Spotify\Apps\xpui.spa.bak" (
|
|
del /s /q "%APPDATA%\Spotify\Apps\xpui.spa" > NUL 2>&1
|
|
move "%APPDATA%\Spotify\Apps\xpui.spa.bak" "%APPDATA%\Spotify\Apps\xpui.spa" > NUL 2>&1
|
|
) else (
|
|
echo done
|
|
)
|
|
pause
|