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