Turn off all notifications for Notification Suggestions

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Turn off all notifications for Notification Suggestions

Message par ForumBot »

From time to time I get this notification from Windows 11:

If Je veux turn it off (by clicking on ...), the option is gray:

So, how to turn it off?

The following settings are turned off under my *System* > *Notifications* > *Additional settings*:

- *Show the Windows welcome experience after updates and when signed in to show what's new and suggested*

- *Suggest ways to get the most out of Windows and finish setting up this device*

- *Get tips and suggestions when using Windows*
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Turn off all notifications for Notification Suggestions

Message par ForumBot »

The Windows Push Notifications User Service refers to this functionality as **SmartOptOut**.

**Current status:** J'ai disabled this notification in le registre on three computers on 2024-03-15 and J'ain't seen any Notification Suggestions since. I will update this answer if that changes.

## Recommended: turn off in Settings

After about a year of this nonsense, Microsoft finally added the missing ability to disable these notifications normally in:

- [Windows 11 24H2 26100.2161 October 2024 Preview Update KB5044384](https://support.microsoft.com/en-us/topic/october-24-2024-kb5044384-os-build-26100-2161-preview-5a4ac390-7c7b-4f7f-81c2-c2b329ac86ab#ID0EDHBH)

- [Windows 11 24H2 26100.2314 November 2024 Cumulative Update KB5046617](https://support.microsoft.com/en-us/topic/november-12-2024-kb5046617-os-build-26100-2314-1fa61a6d-a99a-47ca-a169-6974f08c3a0b)

Now vous pouvez utiliser Settings or the ellipsis menu on the offending notification to disable Notification Suggestions. Check out the screenshots in **Alternative 2** below to see what to click, and remember that you don't have to manually edit le registre anymore.

## Alternative 1: disable notification in registry

It is possible to "Turn off all notifications for Notification Suggestions" with this registry change:
`Windows Éditeur du registre Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.ActionCenter.SmartOptOut]
"Enabled"=dword:00000000

```

## Alternative 2: allow notifications to be disabled in UI

Alternatively, if you want to disable it through the Settings app GUI, you can set the following value. However, this is a more circuitous path that doesn't work any better, it's just a different route to the same state as the recommended change above.
`Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\AppUserModelId\Windows.ActionCenter.SmartOptOut]
"ShowInSettings"=dword:00000001

```

**Be aware that this key is only writable by the TrustedInstaller user**, so if you get `Error Editing Value`, vous devez either take ownership of the key and give yourself permissions to write to it, or run `regedit.exe` as TrustedInstaller (par exemple, using [WinAero Tweaker](https://winaero.com/winaero-tweaker/), [ExecTi](https://winaero.com/execti/), or [PsExec](https://learn.microsoft.com/en-us/sysinternals/downloads/psexec)).

Then allez dans Settings > System > Notifications, and under "Notifications from apps and other senders," turn "Notification Suggestions" off.

You could also wait for the "We noticed you haven't opened these in a while" notification to appear again et cliquez sur "Turn off all notifications for Notification Suggestions" in the … menu (which will no longer be disabled as it was in the question's screenshot):

## Alternative 3: slow down timer

Vous pouvez modify the frequency at which SmartOptOut runs, so you may be able to make it run so infrequently that it practically never runs. J'ai used this to make it run faster for testing, so slower should work too.
`Windows Éditeur du registre Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\SmartOptOut]
"InitialTimerCooldown"=hex(b):ff,ff,ff,ff,ff,ff,ff,ff
"PeriodicTimerCooldown"=hex(b):ff,ff,ff,ff,ff,ff,ff,ff

```

These changes set the interval between the WpnUserService starting and the first SmartOptOut check, and the interval between subsequent checks, to the maximum 64-bit unsigned long value. This seems to be interpreted as a duration in seconds, which equates to about 585 billion years.
Répondre

Revenir à « Windows 11 »