This file contains 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
# Simple script to remove the Windows 10 "Nag" Updates and telemetry additions for Windows 7 & 8 users | |
# This will uninstall the updates and hide them, preventing installation in the future | |
# Note: MUST BE RUN AS ADMINISTRATOR, setting updates to hidden requires admin permissions | |
# Updates removed: | |
# KB3035583 - Update installs Get Windows 10 app in Windows 8.1 and Windows 7 SP1 | |
# https://support.microsoft.com/en-us/kb/3035583 | |
# KB2952664 - Compatibility update for upgrading Windows 7 | |
# https://support.microsoft.com/en-us/kb/2952664 | |
# KB2976978 - Compatibility update for Windows 8.1 and Windows 8 | |
# https://support.microsoft.com/en-us/kb/2976978 |
This file contains 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
# Run this from Powershell as Administrator with (New-Object System.Net.WebClient).DownloadString("https://gist.github.com/damieng/881852e7112be7d97957/raw") | powershell -command - | |
Write-Output "Making Windows more developer oriented (Revision 26)..." | |
Set-ExecutionPolicy Unrestricted | |
if ([System.Environment]::OSVersion.Version.Major -ge 10) { | |
Write-Output " * Detected Windows 10" | |
Write-Output " * Removing Windows 10 bloatware" | |
$apps = @( | |
"Microsoft.3DBuilder" |