Created
September 1, 2021 17:06
-
-
Save glimpsed/50d9badaa811903ca95cdbdca6f8b0b9 to your computer and use it in GitHub Desktop.
Block Spotify updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open Admin Command Prompt and type these commands one by one: | |
del %localappdata%\Spotify\Update | |
mkdir %localappdata%\Spotify\Update | |
icacls %localappdata%\Spotify\Update /deny "%username%":D | |
icacls %localappdata%\Spotify\Update /deny "%username%":R | |
Description of given commands: | |
Removes directory C:\Users\<your username>\AppData\Spotify\Update | |
Creates directory C:\Users\<your username>\Appdata\Spotify\Update | |
Denies delete permission to your account for C:\Users\<your username>\Appdata\Spotify\Update requiring administrative prompt for delete privileges, preventing spotify from removing it without admin | |
Denies read permission to your account for C:\Users\<your username>\Appdata\Spotify\Update requiring administrative prompt for read privileges, preventing spotify from placing the update program in it without admin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment