Files
SpotX/Uninstall.bat
amd64fox 10d2e76702 version bump to 1.2.74.471
- enabled library import on settings page
- enabled shuffle settings section in advanced settings
- enabled the search results as a list of top results
- enabled multi selection in Your Library
- enabled profile visibility controls in the settings & profile page
- enabled launcher auto start toggle in the settings
- enabled option to exclude track from taste profile via context menu
- optimizing binary file backups
- enabled users to react and reply to comments
- optimizing binary file backups
- new css classes have been added to hide track download elements
- uninstall.bat changed
2025-10-05 05:53:08 +03:00

33 lines
1010 B
Batchfile

@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
set "SPOTIFY_PATH=%Appdata%\Spotify"
if exist "%SPOTIFY_PATH%\chrome_elf.dll.bak" (
del /s /q "%SPOTIFY_PATH%\chrome_elf.dll" > NUL 2>&1
move "%SPOTIFY_PATH%\chrome_elf.dll.bak" "%SPOTIFY_PATH%\chrome_elf.dll" > NUL 2>&1
)
if exist "%SPOTIFY_PATH%\Spotify.dll.bak" (
del /s /q "%SPOTIFY_PATH%\Spotify.dll" > NUL 2>&1
move "%SPOTIFY_PATH%\Spotify.dll.bak" "%SPOTIFY_PATH%\Spotify.dll" > NUL 2>&1
)
if exist "%SPOTIFY_PATH%\Spotify.bak" (
del /s /q "%SPOTIFY_PATH%\Spotify.exe" > NUL 2>&1
move "%SPOTIFY_PATH%\Spotify.bak" "%SPOTIFY_PATH%\Spotify.exe" > NUL 2>&1
)
if exist "%SPOTIFY_PATH%\Apps\xpui.bak" (
del /s /q "%SPOTIFY_PATH%\Apps\xpui.spa" > NUL 2>&1
move "%SPOTIFY_PATH%\Apps\xpui.bak" "%SPOTIFY_PATH%\Apps\xpui.spa" > NUL 2>&1
)
if exist "%temp%\SpotX_Temp*" (
for /d %%i in ("%temp%\SpotX_Temp*") do (
rd /s/q "%%i" > NUL 2>&1
)
)
echo Patch successfully removed
pause