topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 8:28 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dlbr128 [ switch to compact view ]

Pages: [1]
1
Screenshot Captor / Re: Too Many Entries in System Settings
« on: May 23, 2017, 03:18 AM »
There seems to be a big long thread here, but it's hard for me to find a real explanation or solution:
https://answers.micr...-e49f344095e5?auth=1

I've found a solution by StephenHaxby in this thread:

Notification settings are saved in an SQLite Database here:

C:\Users\<YOUR USERNAME>\AppData\Local\Microsoft\Windows\Notifications\wpndatabase.db

You can view the contents with any SQLite Database reader/query, I used this:

http://sqlitebrowser.org/

Just search the 'NotificationHandler' table for the notification you want to delete (select * from NotificationHandler), in my case it was 'Symantec.ToastUI' and it was at 'RecordId' 72.
Then just delete everything conected to this Handler:

delete from HandlerSettings where HandlerID = 72

delete from Notification where HandlerId = 72

delete from WNSPushChannel where HandlerId = 72

delete from NotificationHandler where RecordId = 72

Save the DB (if you are using the app above) and re-open the Notifications Settings App.
Your unwanted/uninstalled app should now be gone.

Well... It was for me...

As said may times in this thread, you should be deleting registry entries...

Pages: [1]