Skip to content

Commit

Permalink
Win11 Search Windows.db
Browse files Browse the repository at this point in the history
  • Loading branch information
kacos2000 authored Oct 29, 2022
1 parent 37f5dc3 commit b2e906e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Win_Search_PropertyStore.sql
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b2e906e

Please sign in to comment.