Add files via upload

Win10 Notifications wpndatabase.db
located at "\users\user\AppData\Local\Microsoft\Windows\Notifications"
master
Costas K 6 years ago committed by GitHub
parent 50ab356123
commit 2b2f0dbd93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,20 @@
select
Notification.Id,
NotificationHandler.PrimaryId as 'Application',
NotificationHandler.HandlerType,
NotificationHandler.WNSId as 'Type',
Notification.Payload,
datetime((Notification.ArrivalTime - 116444736000000000)/10000000, 'unixepoch') as ArrivalTime,
case when Notification.ExpiryTime = 0 then 'Expired' else datetime((Notification.ExpiryTime - 116444736000000000)/10000000, 'unixepoch') end as ExpiryTime,
NotificationHandler.CreatedTime,
NotificationHandler.ModifiedTime
from Notification
Join NotificationHandler on Notification.HandlerId = NotificationHandler.RecordId
--group by HandlerId
order by Id desc
Loading…
Cancel
Save