forked from mrpond/BlockTheSpot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuninstall.bat
More file actions
26 lines (24 loc) · 816 Bytes
/
uninstall.bat
File metadata and controls
26 lines (24 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@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