Skip to content

Instantly share code, notes, and snippets.

@deluvas
Created March 12, 2017 08:57
Show Gist options
  • Save deluvas/1fcbec6c285fb64683c5fbe9c6cb830c to your computer and use it in GitHub Desktop.
Save deluvas/1fcbec6c285fb64683c5fbe9c6cb830c to your computer and use it in GitHub Desktop.
Disable annoying Windows 10 update notification
REM
REM Run with administrative privileges
REM https://i.stack.imgur.com/t2GQK.png
REM
cd /d "%Windir%\System32"
takeown /F MusNotification.exe
icacls MusNotification.exe /deny Everyone:(X)
takeown /F MusNotificationUx.exe
icacls MusNotificationUx.exe /deny Everyone:(X)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment