Turn On or Off Notifications from Apps and Senders in Windows 10  

Page 4 of 5 FirstFirst ... 2345 LastLast

  1. Posts : 68,652
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #30

    shiwan0804 said:
    Hi, Brink

    I found the registry key of "Get notifications from these senders" as following.

    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings

    Turn on is no the Dword value named as Enabled.

    Turn off is Dword value named as Enabled and parameter is 0.

    We could turn on or off specific application notification by using the registry key.

    Hope it was helpful to someone.

    Best regards,

    Steven
    Thank you Steven. This has been added as option 6 to help.
      My Computers


  2. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #31

    Hello @Brink,

    I have been helping TairikuOkami in another thread on something similar to this. I came up with the following CMD Prompt Commands [ Batch Script maybe ] which might be worth adding as an option to the above Tutorial.

    Turn OFF . . .

    Code:
    
    Reg Add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 0 /f

    Turn ON . . .

    Code:
    
    Reg Add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 1 /f

    I DON'T know if you would also need to add . . .

    Code:
    
    taskkill /f /im explorer.exe
    start explorer.exe

    Just a thought!
      My Computer


  3. Posts : 68,652
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #32

    Paul Black said:
    Hello @Brink,

    I have been helping TairikuOkami in another thread on something similar to this. I came up with the following CMD Prompt Commands [ Batch Script maybe ] which might be worth adding as an option to the above Tutorial.

    Turn OFF . . .

    Code:
    
    Reg Add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 0 /f

    Turn ON . . .

    Code:
    
    Reg Add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 1 /f

    I DON'T know if you would also need to add . . .

    Code:
    
    taskkill /f /im explorer.exe
    start explorer.exe
    Just a thought!
    Thank you Paul.

    Usually, you'll need to sign out and sign in to apply if set manually via registry.
      My Computers


  4. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #33

    Brink said:
    Thank you Paul.

    Usually, you'll need to sign out and sign in to apply if set manually via registry.

    You are very welcome, and thanks for the clarification. While investigating an answer in the other thread I came across this Tutorial and thought it would be a good alternative addition to this Tutorial.
      My Computer


  5. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #34

    Hello @Brink ,

    I want to actually Turn Off the following . . .

    Turn On or Off Notifications from Apps and Senders in Windows 10-notifications-actions-1.jpg

    . . . rather than just Turning Off > Get notifications from Apps and other Senders . . .

    Turn On or Off Notifications from Apps and Senders in Windows 10-notifications-actions-3.jpg

    The REG File is located here . . .

    Turn On or Off Notifications from Apps and Senders in Windows 10-notifications-actions-2.jpg

    . . . and the Exported REG File for the above is . . .

    Code:
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings]
    "QuietHoursTelemetryLastRun"=hex:30,04,94,61,00,00,00,00
    "NOC_GLOBAL_SETTING_ALLOW_TOASTS_ABOVE_LOCK"=dword:00000000
    "NOC_GLOBAL_SETTING_GLEAM_ENABLED"=dword:00000000
    "NOC_GLOBAL_SETTING_ALLOW_CRITICAL_TOASTS_ABOVE_LOCK"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel]
    "LastNotificationAddedTime"=hex(b):a2,63,b0,89,16,31,d7,01
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.AutoPlay]
    "LastNotificationAddedTime"=hex(b):9a,cf,38,ca,19,df,d7,01
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.LowDisk]
    "LastNotificationAddedTime"=hex(b):54,a4,c5,02,73,70,d7,01
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.Print.Notification]
    "LastNotificationAddedTime"=hex(b):d3,33,5d,8e,7c,dd,d7,01
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance]
    "LastNotificationAddedTime"=hex(b):aa,e0,8a,ab,7b,a7,d7,01
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.WiFiNetworkManager]
    "LastNotificationAddedTime"=hex(b):3f,60,a0,90,e5,32,d7,01
    

    It is NOT the usual setup, so what would I need to do to actually Turn Off please?

    I did try and find the solution with one of your many excellent Tutorials, but unfortunately, I could NOT find one.

    Thanks.
      My Computer


  6. Posts : 68,652
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #35

    Hello @Paul Black,

    Did you add the Enabled DWORD with a value of 0 to the ones you wanted to turn off in option 6?
      My Computers


  7. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #36

    Hello @Brink ,

    Brink said:
    Did you add the Enabled DWORD with a value of 0 to the ones you wanted to turn off in option 6?
    Sorry.

    I setup a Batch Script to perform what I want . . .

    Code:
    
    @echo off
    
    :: -------------------------------------------------------------------------------------------
    :: REG Key: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings
    :: Listed : As per the REG Key order.
    :: -------------------------------------------------------------------------------------------
    
    ::  Microsoft.Windows.Cortana [ Microsoft Windows Cortana ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Microsoft.Windows.Cortana_cw5n1h2txyewy!CortanaUI /v Enabled /t REG_DWORD /d 0 /f
    
    ::  QuietHours [ Quiet Hours ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\QuietHours /v Enabled /t REG_DWORD /d 0 /f
    
    ::  ImmersiveControlPanel [ Settings ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel /v Enabled /t REG_DWORD /d 0 /f
    
    ::  AutoPlay [ AutoPlay ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.AutoPlay /v Enabled /t REG_DWORD /d 0 /f
    
    ::  LowDisk [ Storage Settings ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.LowDisk /v Enabled /t REG_DWORD /d 0 /f
    
    ::  Print.Notification [ Print Notification ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.Print.Notification /v Enabled /t REG_DWORD /d 0 /f
    
    ::  SecurityAndMaintenance [ Security and Maintenance ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance /v Enabled /t REG_DWORD /d 0 /f
    
    ::  WiFiNetworkManager [ Wireless ]
    REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.WiFiNetworkManager /v Enabled /t REG_DWORD /d 0 /f
    
    

    Thank you, as always.
      My Computer


  8. Posts : 68,652
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #37

    Paul Black said:
    Thank you, as always.
      My Computers


  9. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #38

    Hello @Brink,

    Sorry to cheeky, but do you know how to Uncheck [ Allow Notifications to Play Sounds ] this via a REG file please . . .

    Turn On or Off Notifications from Apps and Senders in Windows 10-notifications-actions-4.jpg

    Thanks.
      My Computer


  10. Posts : 68,652
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #39

    Paul Black said:
    Hello @Brink,

    Sorry to cheeky, but do you know how to Uncheck [ Allow Notifications to Play Sounds ] this via a REG file please . . .

    Thanks.
    Just added for you.

    Turn On or Off Notification Sound from Senders in Windows 10
      My Computers


 

Tutorial Categories

Turn On or Off Notifications from Apps and Senders in Windows 10 Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 05:26.
Find Us




Windows 10 Forums