Skip to content

Commit

Permalink
[skip] upate readme + uninstall.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpond committed Oct 29, 2021
1 parent e128922 commit 84e191d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/mrpond/Blo
or

1. Browse to your Spotify installation folder `%APPDATA%\Spotify`
2. Rename `chrome_elf.dll` to `chrome_elf_bak.dll`
2. Download `chrome_elf.zip` from [releases](https://github.com/mrpond/BlockTheSpot/releases)
3. Unzip and replace `chrome_elf.dll` and `config.ini`
3. Unzip `chrome_elf.dll` and `config.ini`

### Uninstall:
* Just run uninstall.bat
Expand Down
6 changes: 3 additions & 3 deletions uninstall.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ 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
if exist "%APPDATA%\Spotify\chrome_elf_bak.dll" (
del /s /q "%APPDATA%\Spotify\chrome_elf_bak.dll" > NUL 2>&1
move "%APPDATA%\Spotify\chrome_elf_bak.dll" "%APPDATA%\Spotify\chrome_elf.dll" > NUL 2>&1
) else (
echo done
)
Expand Down

0 comments on commit 84e191d

Please sign in to comment.