Skip to content

Commit b2e906e

Browse files
authoredOct 29, 2022
Win11 Search Windows.db
1 parent 37f5dc3 commit b2e906e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎Win_Search_PropertyStore.sql

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
-- This query is to show the content of the SystemIndex_1_PropertyStore table
2+
-- of the new Windows.db (Win 11 search database)
3+
--
4+
-- Database location:
5+
-- C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.db
6+
7+
SELECT
8+
WorkId,
9+
ColumnId,
10+
-- Since the field is a BLOB, this will show either text of the hex value:
11+
case
12+
when typeof(value) is 'text' or typeof(value) is 'integer'
13+
then cast(value as 'text')
14+
else hex(Value)
15+
end as 'Value'
16+
17+
from SystemIndex_1_PropertyStore

0 commit comments

Comments
 (0)
Please sign in to comment.