Disable app access to notifications
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
- Impact: MediumSystem Functionality Loss Risk: Moderate
This action improves privacy with minimal impact when you run the recommended script.
This action improves privacy with some 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 prevents Windows apps from accessing notifications 1 2 3. It enhances privacy by ensuring that apps cannot access 1 2 3 or manage 4 notifications without explicit user permission. Notifications can contain personal or sensitive information.
This script configures:
- Windows policy (
LetAppsAccessNotifications
1 2) - Privacy settings user interface (
52079E78-A92B-413F-B213-E8FE35712E72
3,userNotificationListener
4 5)
Disabling app access may affect the functionality of certain Microsoft Store, third-party, and system applications. This may disrupt essential functions, such as receiving alerts from messaging apps including Instagram and WhatsApp 6.
This script is only recommended if you understand its implications.
Some non-critical or features may no longer function correctly after running this script.
This script can be fully reversed to restore changes if something goes wrong.
Sources
- Privacy Policy CSP - Windows Client Management. Microsoft Learn. learn.microsoft.com. (2024).
Original: https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-privacy
Archived: https://web.archive.org/web/20240427110714/https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-privacy#letappsaccessnotifications - Manage connections from Windows 10 and Windows 11 Server/Enterprise editions operating system components to Microsoft services - Windows Privacy. Microsoft Learn. learn.microsoft.com. (2023).
Original: https://learn.microsoft.com/en-us/windows/privacy/manage-connections-from-windows-operating-system-components-to-microsoft-services
Archived: https://web.archive.org/web/20230911110911/https://learn.microsoft.com/en-us/windows/privacy/manage-connections-from-windows-operating-system-components-to-microsoft-services#185-notifications - Windows 10 Registry Paths for Privacy Settings - C:Amie (not) Com!. c-amie.co.uk. (2024).
Original: https://www.c-amie.co.uk/technical/windows-10-registry-paths-for-privacy-settings
Archived: https://web.archive.org/web/20240427103845/https://www.c-amie.co.uk/technical/windows-10-registry-paths-for-privacy-settings/ - App capability declarations - UWP applications. Microsoft Learn. learn.microsoft.com. (2024).
Original: https://learn.microsoft.com/en-us/windows/uwp/packaging/app-capability-declarations
Archived: https://web.archive.org/web/20240427120219/https://learn.microsoft.com/en-us/windows/uwp/packaging/app-capability-declarations - Registry Keys for Windows 10 Application Privacy Settings - Jose Espitia. joseespitia.com. (2024).
Original: https://www.joseespitia.com/2019/07/24/registry-keys-for-windows-10-application-privacy-settings
Archived: https://web.archive.org/web/20240427114500/https://www.joseespitia.com/2019/07/24/registry-keys-for-windows-10-application-privacy-settings/ - [BUG]: Ran the standard protection and now my Windows does not display notifications to apps like Instagram and Whatsapp · Issue #339 · undergroundwires/privacy.sexy · GitHub. github.com. (2024).
Original: https://github.com/undergroundwires/privacy.sexy/issues/339
Archived: https://web.archive.org/web/20240428104000/https://github.com/undergroundwires/privacy.sexy/issues/339
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 "Disable app access to notifications" 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 "Disable app access to notifications" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable app access to notifications
- 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
:: Disable app access (LetAppsAccessNotifications) using GPO (re-activation through GUI is not possible)
:: Set the registry value: "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy!LetAppsAccessNotifications"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy'; $data = '2'; reg add 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy' /v 'LetAppsAccessNotifications' /t 'REG_DWORD' /d "^""$data"^"" /f"
:: Set the registry value: "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy!LetAppsAccessNotifications_UserInControlOfTheseApps"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy'; $data = '\0'; reg add 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy' /v 'LetAppsAccessNotifications_UserInControlOfTheseApps' /t 'REG_MULTI_SZ' /d "^""$data"^"" /f"
:: Set the registry value: "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy!LetAppsAccessNotifications_ForceAllowTheseApps"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy'; $data = '\0'; reg add 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy' /v 'LetAppsAccessNotifications_ForceAllowTheseApps' /t 'REG_MULTI_SZ' /d "^""$data"^"" /f"
:: Set the registry value: "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy!LetAppsAccessNotifications_ForceDenyTheseApps"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy'; $data = '\0'; reg add 'HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy' /v 'LetAppsAccessNotifications_ForceDenyTheseApps' /t 'REG_MULTI_SZ' /d "^""$data"^"" /f"
:: Disable app capability (userNotificationListener) using user privacy settings
:: Set the registry value: "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\userNotificationListener!Value"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\userNotificationListener'; $data = 'Deny'; reg add 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\userNotificationListener' /v 'Value' /t 'REG_SZ' /d "^""$data"^"" /f"
:: Disable app access ({52079E78-A92B-413F-B213-E8FE35712E72}) in older Windows versions (before 1903)
:: Set the registry value: "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{52079E78-A92B-413F-B213-E8FE35712E72}!Value"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{52079E78-A92B-413F-B213-E8FE35712E72}'; $data = 'Deny'; reg add 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{52079E78-A92B-413F-B213-E8FE35712E72}' /v 'Value' /t 'REG_SZ' /d "^""$data"^"" /f"
Ijo6IFJlc3RvcmUgYXBwIGFjY2VzcyAoTGV0QXBwc0FjY2Vzc05vdGlmaWNhdGlvbnMpIHVzaW5nIEdQT1xuOjogRGVsZXRlIHRoZSByZWdpc3RyeSB2YWx1ZSBcIkhLTE1cXFNPRlRXQVJFXFxQb2xpY2llc1xcTWljcm9zb2Z0XFxXaW5kb3dzXFxBcHBQcml2YWN5IUxldEFwcHNBY2Nlc3NOb3RpZmljYXRpb25zXCJcblBvd2VyU2hlbGwgLUV4ZWN1dGlvblBvbGljeSBVbnJlc3RyaWN0ZWQgLUNvbW1hbmQgXCJyZWcgZGVsZXRlICdIS0xNXFxTT0ZUV0FSRVxcUG9saWNpZXNcXE1pY3Jvc29mdFxcV2luZG93c1xcQXBwUHJpdmFjeScgL3YgJ0xldEFwcHNBY2Nlc3NOb3RpZmljYXRpb25zJyAvZiAyPiRudWxsXCJcbjo6IERlbGV0ZSB0aGUgcmVnaXN0cnkgdmFsdWUgXCJIS0xNXFxTT0ZUV0FSRVxcUG9saWNpZXNcXE1pY3Jvc29mdFxcV2luZG93c1xcQXBwUHJpdmFjeSFMZXRBcHBzQWNjZXNzTm90aWZpY2F0aW9uc19Vc2VySW5Db250cm9sT2ZUaGVzZUFwcHNcIlxuUG93ZXJTaGVsbCAtRXhlY3V0aW9uUG9saWN5IFVucmVzdHJpY3RlZCAtQ29tbWFuZCBcInJlZyBkZWxldGUgJ0hLTE1cXFNPRlRXQVJFXFxQb2xpY2llc1xcTWljcm9zb2Z0XFxXaW5kb3dzXFxBcHBQcml2YWN5JyAvdiAnTGV0QXBwc0FjY2Vzc05vdGlmaWNhdGlvbnNfVXNlckluQ29udHJvbE9mVGhlc2VBcHBzJyAvZiAyPiRudWxsXCJcbjo6IERlbGV0ZSB0aGUgcmVnaXN0cnkgdmFsdWUgXCJIS0xNXFxTT0ZUV0FSRVxcUG9saWNpZXNcXE1pY3Jvc29mdFxcV2luZG93c1xcQXBwUHJpdmFjeSFMZXRBcHBzQWNjZXNzTm90aWZpY2F0aW9uc19Gb3JjZUFsbG93VGhlc2VBcHBzXCJcblBvd2VyU2hlbGwgLUV4ZWN1dGlvblBvbGljeSBVbnJlc3RyaWN0ZWQgLUNvbW1hbmQgXCJyZWcgZGVsZXRlICdIS0xNXFxTT0ZUV0FSRVxcUG9saWNpZXNcXE1pY3Jvc29mdFxcV2luZG93c1xcQXBwUHJpdmFjeScgL3YgJ0xldEFwcHNBY2Nlc3NOb3RpZmljYXRpb25zX0ZvcmNlQWxsb3dUaGVzZUFwcHMnIC9mIDI+JG51bGxcIlxuOjogRGVsZXRlIHRoZSByZWdpc3RyeSB2YWx1ZSBcIkhLTE1cXFNPRlRXQVJFXFxQb2xpY2llc1xcTWljcm9zb2Z0XFxXaW5kb3dzXFxBcHBQcml2YWN5IUxldEFwcHNBY2Nlc3NOb3RpZmljYXRpb25zX0ZvcmNlRGVueVRoZXNlQXBwc1wiXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwicmVnIGRlbGV0ZSAnSEtMTVxcU09GVFdBUkVcXFBvbGljaWVzXFxNaWNyb3NvZnRcXFdpbmRvd3NcXEFwcFByaXZhY3knIC92ICdMZXRBcHBzQWNjZXNzTm90aWZpY2F0aW9uc19Gb3JjZURlbnlUaGVzZUFwcHMnIC9mIDI+JG51bGxcIlxuOjogUmVzdG9yZSBhcHAgY2FwYWJpbGl0eSAodXNlck5vdGlmaWNhdGlvbkxpc3RlbmVyKSB1c2luZyB1c2VyIHByaXZhY3kgc2V0dGluZ3Ncbjo6IFNldCB0aGUgcmVnaXN0cnkgdmFsdWUgXCJIS0xNXFxTT0ZUV0FSRVxcTWljcm9zb2Z0XFxXaW5kb3dzXFxDdXJyZW50VmVyc2lvblxcQ2FwYWJpbGl0eUFjY2Vzc01hbmFnZXJcXENvbnNlbnRTdG9yZVxcdXNlck5vdGlmaWNhdGlvbkxpc3RlbmVyIVZhbHVlXCJcblBvd2VyU2hlbGwgLUV4ZWN1dGlvblBvbGljeSBVbnJlc3RyaWN0ZWQgLUNvbW1hbmQgXCIkcmV2ZXJ0RGF0YSA9ICAnQWxsb3cnOyByZWcgYWRkICdIS0xNXFxTT0ZUV0FSRVxcTWljcm9zb2Z0XFxXaW5kb3dzXFxDdXJyZW50VmVyc2lvblxcQ2FwYWJpbGl0eUFjY2Vzc01hbmFnZXJcXENvbnNlbnRTdG9yZVxcdXNlck5vdGlmaWNhdGlvbkxpc3RlbmVyJyAvdiAnVmFsdWUnIC90ICdSRUdfU1onIC9kIFwiXlwiXCIkcmV2ZXJ0RGF0YVwiXlwiXCIgL2ZcIlxuOjogUmVzdG9yZSBhcHAgYWNjZXNzICh7NTIwNzlFNzgtQTkyQi00MTNGLUIyMTMtRThGRTM1NzEyRTcyfSkgaW4gb2xkZXIgV2luZG93cyB2ZXJzaW9ucyAoYmVmb3JlIDE5MDMpXG46OiBEZWxldGUgdGhlIHJlZ2lzdHJ5IHZhbHVlIFwiSEtDVVxcU09GVFdBUkVcXE1pY3Jvc29mdFxcV2luZG93c1xcQ3VycmVudFZlcnNpb25cXERldmljZUFjY2Vzc1xcR2xvYmFsXFx7NTIwNzlFNzgtQTkyQi00MTNGLUIyMTMtRThGRTM1NzEyRTcyfSFWYWx1ZVwiXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwicmVnIGRlbGV0ZSAnSEtDVVxcU09GVFdBUkVcXE1pY3Jvc29mdFxcV2luZG93c1xcQ3VycmVudFZlcnNpb25cXERldmljZUFjY2Vzc1xcR2xvYmFsXFx7NTIwNzlFNzgtQTkyQi00MTNGLUIyMTMtRThGRTM1NzEyRTcyfScgL3YgJ1ZhbHVlJyAvZiAyPiRudWxsXCIi