Block Spotify Live Tile hosts
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
- Impact: HighSystem Functionality Loss Risk: High
This action improves privacy with high impact when you run the recommended script. - Batch (batchfile)These changes use Windows system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
This script enhances privacy by preventing the Spotify application from fetching and displaying live updates on its Live Tile 1.
Spotify, known for being pre-installed with Windows 2, can collect data in the background without user consent.
This script stops the transmission of real-time data to the Spotify Live Tile 1, which may contain user-specific content or usage patterns.
Live Tiles, a feature within UWP apps, automatically collect and display updated information directly on the Start menu, without opening the app 3. The Live Tiles feature, once available on Windows 8.1 and 10 4, has been replaced by the Widgets feature in Windows 11 5.
Using this script may have side effects on Spotify functionalities beyond the Live Tile, potentially influencing other app features or the Spotify website experience 6.
Blocked Hosts
The blocked hosts are:
spclient.wg.spotify.com
1
This script should only be used by advanced users.
This script is not recommended for daily use as it breaks important functionality.
Consider creating a system restore point before doing any changes.
Sources
- Windows 11 connection endpoints for non-Enterprise editions - Windows Privacy. Microsoft Learn. learn.microsoft.com. (2024).
Original: https://learn.microsoft.com/en-us/windows/privacy/windows-11-endpoints-non-enterprise-editions
Archived: https://web.archive.org/web/20240217185950/https://learn.microsoft.com/en-us/windows/privacy/windows-11-endpoints-non-enterprise-editions - Spotify app is automatically getting installed on Windows 10 & Windows 11. windowslatest.com. (2024).
Original: https://www.windowslatest.com/2022/09/28/spotify-app-is-automatically-getting-installed-on-windows-10-windows-11
Archived: https://web.archive.org/web/20240219224242/https://www.windowslatest.com/2022/09/28/spotify-app-is-automatically-getting-installed-on-windows-10-windows-11/ - UWP Apps - Develop Hosted Web Apps for UWP. Microsoft Learn. learn.microsoft.com. (2024).
Original: https://learn.microsoft.com/en-us/archive/msdn-magazine/2017/april/uwp-apps-develop-hosted-web-apps-for-uwp
Archived: https://web.archive.org/web/20240502092842/https://learn.microsoft.com/en-us/archive/msdn-magazine/2017/april/uwp-apps-develop-hosted-web-apps-for-uwp#getting-started - Live Tiles, what are they? - Microsoft Community. answers.microsoft.com. (2024).
Original: https://answers.microsoft.com/en-us/windows/forum/all/live-tiles-what-are-they/71084023-f50b-4531-973d-3ba03d2c0d44
Archived: https://web.archive.org/web/20240502095239/https://answers.microsoft.com/en-us/windows/forum/all/live-tiles-what-are-they/71084023-f50b-4531-973d-3ba03d2c0d44 - Windows 11 Specs and System Requirements. Microsoft. www.microsoft.com. (2024).
Original: https://www.microsoft.com/en-ca/windows/windows-11-specifications
Archived: https://web.archive.org/web/20240502093116/https://www.microsoft.com/en-ca/windows/windows-11-specifications - Spotify - ArchWiki. wiki.archlinux.org. (2024).
Original: https://wiki.archlinux.org/title/spotify
Archived: https://web.archive.org/web/20240219205516/https://wiki.archlinux.org/title/spotify
Apply Now
Choose one of three ways to apply:
Download script
Download and run the script directly- No app needed
- Offline usage
- Easy-to-apply
- Free
- Open-source
Help
How to apply or restore "Block Spotify Live Tile hosts" using script
- ≈ 2 min to complete
- Tools: Web Browser
- Difficulty: Simple
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Block Spotify Live Tile hosts" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Block Spotify Live Tile hosts
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
:: Add hosts entries for spclient.wg.spotify.com
PowerShell -ExecutionPolicy Unrestricted -Command "$domain ='spclient.wg.spotify.com'; $hostsFilePath = "^""$env:SYSTEMROOT\System32\drivers\etc\hosts"^""; $comment = "^""managed by privacy.sexy"^""; $hostsFileEncoding = [Microsoft.PowerShell.Commands.FileSystemCmdletProviderEncoding]::Utf8; $blockingHostsEntries = @(; @{ AddressType = "^""IPv4"^""; IPAddress = '0.0.0.0'; }; @{ AddressType = "^""IPv6"^""; IPAddress = '::1'; }; ); try { $isHostsFilePresent = Test-Path -Path $hostsFilePath -PathType Leaf -ErrorAction Stop; } catch { Write-Error "^""Failed to check hosts file existence. Error: $_"^""; exit 1; }; if (-Not $isHostsFilePresent) { Write-Output "^""Creating a new hosts file at $hostsFilePath."^""; try { New-Item -Path $hostsFilePath -ItemType File -Force -ErrorAction Stop | Out-Null; Write-Output "^""Successfully created the hosts file."^""; } catch { Write-Error "^""Failed to create the hosts file. Error: $_"^""; exit 1; }; }; foreach ($blockingEntry in $blockingHostsEntries) { Write-Output "^""Processing addition for $($blockingEntry.AddressType) entry."^""; try { $hostsFileContents = Get-Content -Path "^""$hostsFilePath"^"" -Raw -Encoding $hostsFileEncoding -ErrorAction Stop; } catch { Write-Error "^""Failed to read the hosts file. Error: $_"^""; continue; }; $hostsEntryLine = "^""$($blockingEntry.IPAddress)`t$domain $([char]35) $comment"^""; if ((-Not [String]::IsNullOrWhiteSpace($hostsFileContents)) -And ($hostsFileContents.Contains($hostsEntryLine))) { Write-Output 'Skipping, entry already exists.'; continue; }; try { Add-Content -Path $hostsFilePath -Value $hostsEntryLine -Encoding $hostsFileEncoding -ErrorAction Stop; Write-Output 'Successfully added the entry.'; } catch { Write-Error "^""Failed to add the entry. Error: $_"^""; continue; }; }"
Ijo6IFJlbW92ZSBob3N0cyBlbnRyaWVzIGZvciBzcGNsaWVudC53Zy5zcG90aWZ5LmNvbVxuUG93ZXJTaGVsbCAtRXhlY3V0aW9uUG9saWN5IFVucmVzdHJpY3RlZCAtQ29tbWFuZCBcIiRkb21haW4gPSdzcGNsaWVudC53Zy5zcG90aWZ5LmNvbSc7ICRob3N0c0ZpbGVQYXRoID0gXCJeXCJcIiRlbnY6U1lTVEVNUk9PVFxcU3lzdGVtMzJcXGRyaXZlcnNcXGV0Y1xcaG9zdHNcIl5cIlwiOyAkY29tbWVudCA9IFwiXlwiXCJtYW5hZ2VkIGJ5IHByaXZhY3kuc2V4eVwiXlwiXCI7ICRob3N0c0ZpbGVFbmNvZGluZyA9IFtTeXN0ZW0uVGV4dC5FbmNvZGluZ106OlVURjg7ICRibG9ja2luZ0hvc3RzRW50cmllcyA9IEAoOyBAeyBBZGRyZXNzVHlwZSA9IFwiXlwiXCJJUHY0XCJeXCJcIjsgIElQQWRkcmVzcyA9ICcwLjAuMC4wJzsgfTsgQHsgQWRkcmVzc1R5cGUgPSBcIl5cIlwiSVB2NlwiXlwiXCI7ICBJUEFkZHJlc3MgPSAnOjoxJzsgfTsgKTsgdHJ5IHsgJGlzSG9zdHNGaWxlUHJlc2VudCA9IFRlc3QtUGF0aCAtUGF0aCAkaG9zdHNGaWxlUGF0aCAtUGF0aFR5cGUgTGVhZiAtRXJyb3JBY3Rpb24gU3RvcDsgfSBjYXRjaCB7IFdyaXRlLUVycm9yIFwiXlwiXCJGYWlsZWQgdG8gY2hlY2sgaG9zdHMgZmlsZSBleGlzdGVuY2UuIEVycm9yOiAkX1wiXlwiXCI7IGV4aXQgMTsgfTsgaWYgKC1Ob3QgJGlzSG9zdHNGaWxlUHJlc2VudCkgeyBXcml0ZS1PdXRwdXQgJ1NraXBwaW5nLCB0aGUgaG9zdHMgZmlsZSBkb2VzIG5vdCBleGlzdC4nOyBleGl0IDA7IH07IGZvcmVhY2ggKCRibG9ja2luZ0VudHJ5IGluICRibG9ja2luZ0hvc3RzRW50cmllcykgeyBXcml0ZS1PdXRwdXQgXCJeXCJcIlByb2Nlc3NpbmcgcmVtb3ZhbCBmb3IgJCgkYmxvY2tpbmdFbnRyeS5BZGRyZXNzVHlwZSkgZW50cnkuXCJeXCJcIjsgdHJ5IHsgJGhvc3RzRmlsZUNvbnRlbnRzID0gW1N5c3RlbS5JTy5GaWxlXTo6UmVhZEFsbFRleHQoJGhvc3RzRmlsZVBhdGgsICRob3N0c0ZpbGVFbmNvZGluZyk7IH0gY2F0Y2ggeyBXcml0ZS1FcnJvciBcIl5cIlwiRmFpbGVkIHRvIHJlYWQgdGhlIGhvc3RzIGZpbGUgZm9yIHJlbW92YWwuIEVycm9yOiAkX1wiXlwiXCI7IGNvbnRpbnVlOyB9OyAkaG9zdHNFbnRyeUxpbmUgPSBcIl5cIlwiJCgkYmxvY2tpbmdFbnRyeS5JUEFkZHJlc3MpYHQkZG9tYWluICQoW2NoYXJdMzUpICRjb21tZW50XCJeXCJcIjsgaWYgKFtTdHJpbmddOjpJc051bGxPcldoaXRlU3BhY2UoJGhvc3RzRmlsZUNvbnRlbnRzKSAtT3IgKC1Ob3QgJGhvc3RzRmlsZUNvbnRlbnRzLkNvbnRhaW5zKCRob3N0c0VudHJ5TGluZSkpKSB7IFdyaXRlLU91dHB1dCAnU2tpcHBpbmcsIGVudHJ5IG5vdCBmb3VuZC4nOyBjb250aW51ZTsgfTsgJGhvc3RzRW50cnlSZW1vdmFsUGF0dGVybiA9IFtyZWdleF06OkVzY2FwZSgkaG9zdHNFbnRyeUxpbmUpICsgXCJeXCJcIihcXHI/XFxuKT9cIl5cIlwiOyAkaG9zdHNGaWxlQ29udGVudEFmdGVyUmVtb3ZhbCA9ICRob3N0c0ZpbGVDb250ZW50cyAtUmVwbGFjZSAkaG9zdHNFbnRyeVJlbW92YWxQYXR0ZXJuLCBcIl5cIlwiXCJeXCJcIjsgdHJ5IHsgW1N5c3RlbS5JTy5GaWxlXTo6V3JpdGVBbGxUZXh0KCRob3N0c0ZpbGVQYXRoLCAkaG9zdHNGaWxlQ29udGVudEFmdGVyUmVtb3ZhbCwgJGhvc3RzRmlsZUVuY29kaW5nKTsgV3JpdGUtT3V0cHV0ICdTdWNjZXNzZnVsbHkgcmVtb3ZlZCB0aGUgZW50cnkuJzsgfSBjYXRjaCB7IFdyaXRlLUVycm9yIFwiXlwiXCJGYWlsZWQgdG8gcmVtb3ZlIHRoZSBlbnRyeS4gRXJyb3I6ICRfXCJeXCJcIjsgY29udGludWU7IH07IH1cIiI=
Help
How to apply or restore "Block Spotify Live Tile hosts" using commands
- ≈ 2 min to complete
- Tools: Command Prompt
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open Command Prompt
Open Command Prompt as Administrator. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into Command Prompt and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Block third-party app hosts
- Block tracking hosts
This category includes scripts that block network connections to third-party applications that collect data. These scripts stop your system from sending ...
This category includes scripts that enhance privacy by blocking communications with hosts known for tracking and data collection. A host is a domain name...
Same Goal
Another guide in Block third-party app hosts See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.