https://www.ghacks.net/2019/12/12/ho...-screen-popop/
You can also run the following command from a cmd prompt:
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\EOSNotify" /v DiscontinueEOS /t REG_DWORD /d "1" /f
https://www.ghacks.net/2019/12/12/ho...-screen-popop/
You can also run the following command from a cmd prompt:
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\EOSNotify" /v DiscontinueEOS /t REG_DWORD /d "1" /f
Another option:
Quote:
Seems like EOS nagware can be disabled in a simple way using taskschd.msc (Task Scheduler).
It creates new grop (under: \Microsoft\Windows) , named ‘Setup’, which contains two tasks: ‘EOSNotify’ and ‘EOSNotify2’. By default, the latter is set to run everyday at 12 AM, starting from January, 15. They simply run ‘%windir%\System32\EOSNotify.exe’
It can be disabled and/or deleted via command prompt:
Disable:
schtasks /Change /DISABLE /TN “Microsoft\Windows\Setup\EOSNotify”
schtasks /Change /DISABLE /TN “Microsoft\Windows\Setup\EOSNotify2”
Removal:
schtasks /Delete /F /TN “Microsoft\Windows\Setup\EOSnotify”
schtasks /Delete /F /TN “Microsoft\Windows\Setup\EOSnotify2”
https://www.askwoody.com/forums/topi.../#post-2017590