Central Setting (GPO) for turning off Focus assist on Clients not working

john zuh 56 Reputation points
2023-09-10T12:30:12.8833333+00:00

Anybody knows the best way to turn off focus assist centrally since i am trying to display balloon tips and toast notifications coming from software center. My attempt to disable it via this policy setting Go to the following path:

User configuration > Administrative Templates > Start Menu and Taskbar > Notifications > Turn off Quiet Hours Policy > set to enable didnt apply it either remained at "priorty only" or "alarms only" after i restart the system. Maybe there is another way via registry or script to handle this?

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,708 questions
Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,490 questions
0 comments No comments
{count} votes

Accepted answer
  1. Limitless Technology 44,381 Reputation points
    2023-09-11T15:11:37.0933333+00:00

    Hello there,

    Normally you can find the Focus Assist GPO at: User Configuration > Administrative Templates > Start Menu and Taskbar > Notifications > "Turn off Focus assist" - Enable it to Turn it Off.

    Other way would be to propagate a Registry change through GPO to the affected computers. The Registry change should be at:

    Path: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings

    Key: NOC_GLOBAL_SETTING_TOASTS_ENABLED

    Value: 0 (Disabled)

    Last but not least, Focus Assist can be disabled using Powershell (for example included in a Logon Script) running the next cmdlet:

    Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" -Name "NOC_GLOBAL_SETTING_TOASTS_ENABLED" -Value 0

    --If the reply is helpful, please Upvote and Accept as answer--

    2 people found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.