From b2e906e44db55f980c2bf4b9a397c3d1fcda453a Mon Sep 17 00:00:00 2001 From: Costas K <11378310+kacos2000@users.noreply.github.com> Date: Sat, 29 Oct 2022 12:47:52 +0300 Subject: [PATCH] Win11 Search Windows.db --- Win_Search_PropertyStore.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Win_Search_PropertyStore.sql diff --git a/Win_Search_PropertyStore.sql b/Win_Search_PropertyStore.sql new file mode 100644 index 0000000..d7123c2 --- /dev/null +++ b/Win_Search_PropertyStore.sql @@ -0,0 +1,17 @@ +-- This query is to show the content of the SystemIndex_1_PropertyStore table +-- of the new Windows.db (Win 11 search database) +-- +-- Database location: +-- C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.db + +SELECT +WorkId, +ColumnId, +-- Since the field is a BLOB, this will show either text of the hex value: +case +when typeof(value) is 'text' or typeof(value) is 'integer' +then cast(value as 'text') +else hex(Value) +end as 'Value' + +from SystemIndex_1_PropertyStore \ No newline at end of file