How to Effectively Stop Windows 10 End of Service Notifications

Key Notes

  • Disabling notifications can be achieved through registry and scheduled task modifications.
  • Admin permissions are required to implement these changes.
  • Consider upgrading to benefit from security updates.

Understanding Windows 10 End of Service Notifications and Their Impact

As Microsoft announces the End of Service for Windows 10 on October 14, 2025, users may find themselves bombarded by upgrade notifications. This guide will help you stop these notifications effectively while also encouraging you to consider an upgrade for better future support.

Methods to Disable Windows 10 End of Service Notifications

To stop these end-of-service notifications, we will explore three effective methods that target the underlying processes behind these alerts.

Step 1: Modify the Windows Registry

To prevent notifications from appearing, you can create a new entry in the registry:

  • Press Win + R, type regedit, and press Enter to open the Registry Editor.
  • Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\Notify
  • If the Notify key is not present, create it.
  • Inside the key, create a DWORD (32-bit) Value named DiscontinueEOS.
  • Set its value to 1.
  • Close the Registry Editor and restart your computer to apply the changes.

Step 2: Disable Scheduled Tasks

Windows utilizes scheduled tasks to deliver end-of-service notifications. To disable them:

  • Open the Task Scheduler by pressing Win + S, typing Task Scheduler, and opening it.
  • Navigate to: Task Scheduler Library > Microsoft > Windows > Setup.
  • Locate and disable the following tasks:
    • EOSNotify
    • EOSNotify2
    • OobeUpdater
  • Restart your PC to implement changes.

Step 3: Use PowerShell to Block Notification Services

For users familiar with PowerShell, you can disable notification services via commands:

Input the command below in PowerShell (running as Administrator) to disable EOSNotify tasks:

Get-ScheduledTask -TaskName "EOSNotify*" | Disable-ScheduledTask

To disable the Get Windows 10 (GWX) notifications, use:

Get-ScheduledTask -TaskName "GWX*" | Disable-ScheduledTask

Summary

This guide provided practical methods to stop Windows 10 End of Service notifications by modifying registry entries, disabling scheduled tasks, and using PowerShell commands. Implementing these steps can significantly reduce interruption from unwanted alerts.

Conclusion

In summary, while you can disable these notifications to avoid distractions, consider upgrading to a newer version of Windows to ensure that you receive important updates and support. Taking proactive steps can enhance your computer’s performance and security.

FAQ (Frequently Asked Questions)

Will disabling Windows 10 End of Service notifications affect my system updates?

No, stopping these notifications only prevents the alerts. Windows Update will continue to function normally unless you turn it off manually.

Can I re-enable the Windows 10 End of Service notifications later?

Yes, you can restore the notifications by undoing the registry changes, re-enabling the scheduled tasks, or using PowerShell to enable them back.