18 lines
417 B
Markdown
18 lines
417 B
Markdown
---
|
|
type: "topic"
|
|
created: "2024-01-06T01:25:36.017Z"
|
|
updated: "2024-01-06T01:25:36.017Z"
|
|
---
|
|
|
|
# Windows Updates
|
|
|
|
```bash
|
|
# https://superuser.com/questions/972038/how-to-get-rid-of-updates-are-available-message-in-windows-10
|
|
cd /d "%Windir%\System32"
|
|
takeown /F MusNotification.exe
|
|
icacls MusNotification.exe /deny Everyone:(X)
|
|
takeown /F MusNotificationUx.exe
|
|
icacls MusNotificationUx.exe /deny Everyone:(X)
|
|
rem
|
|
```
|