31 lines
897 B
Markdown
31 lines
897 B
Markdown
---
|
|
type: "topic"
|
|
created: "2024-01-06T01:25:36.042Z"
|
|
updated: "2024-01-06T01:25:36.042Z"
|
|
---
|
|
|
|
# MusNotificationUx
|
|
|
|
```bash Administrator
|
|
# 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
|
|
```
|
|
|
|
```bash Undo
|
|
cd /d "%Windir%\System32"
|
|
icacls MusNotification.exe /remove:d Everyone
|
|
icacls MusNotification.exe /grant Everyone:F
|
|
icacls MusNotification.exe /setowner "NT SERVICE\TrustedInstaller"
|
|
icacls MusNotification.exe /remove:g Everyone
|
|
icacls MusNotificationUx.exe /remove:d Everyone
|
|
icacls MusNotificationUx.exe /grant Everyone:F
|
|
icacls MusNotificationUx.exe /setowner "NT SERVICE\TrustedInstaller"
|
|
icacls MusNotificationUx.exe /remove:g Everyone
|
|
rem
|
|
```
|