You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please add a registry tweak to ExplorerPatcher to fix the default view of Windows explorer's search results.
Issue
When you search for files using Windows 10/11 File Explorer, the search results page may default to “Content” view every time which most users don’t like. Although you can change the view to Details, or any other view setting manually, the change affects only that folder. Sometimes, search results view settings may not stick at all.
Solution
Importing these two registry files modifies the default view of search results in Windows explorer to 'details',
fix1: Sets Details view as the default search results view for Generic folders.
`Windows Registry Editor Version 5.00
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Feature request
Please add a registry tweak to ExplorerPatcher to fix the default view of Windows explorer's search results.
Issue
When you search for files using Windows 10/11 File Explorer, the search results page may default to “Content” view every time which most users don’t like. Although you can change the view to Details, or any other view setting manually, the change affects only that folder. Sometimes, search results view settings may not stick at all.
Solution
Importing these two registry files modifies the default view of search results in Windows explorer to 'details',
fix1: Sets Details view as the default search results view for Generic folders.
`Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU]
[-HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags]
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell{7fde1a1e-8b31-49a5-93b8-6be14cfa4943}]
"LogicalViewMode"=dword:00000001
"Mode"=dword:00000004
fix2: Sets Details view as default search results view for Generic, Music, Videos, Documents folders.
`Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU]
[-HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags]
;Generic Search Results
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell{7fde1a1e-8b31-49a5-93b8-6be14cfa4943}]
"LogicalViewMode"=dword:00000001
"Mode"=dword:00000004
;Pictures Search Results
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell{4dcafe13-e6a7-4c28-be02-ca8c2126280d}]
"LogicalViewMode"=dword:00000001
"Mode"=dword:00000004
;Music Search Results
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell{71689ac1-cc88-45d0-8a22-2943c3e7dfb3}]
"LogicalViewMode"=dword:00000001
"Mode"=dword:00000004
;Documents Search Results
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell{36011842-dccc-40fe-aa3d-6177ea401788}]
"LogicalViewMode"=dword:00000001
"Mode"=dword:00000004
;Videos Search Results
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell{ea25fbd7-3bf7-409e-b97f-3352240903f4}]
"LogicalViewMode"=dword:00000001
"Mode"=dword:00000004`
Source
https://www.winhelponline.com/blog/search-results-content-view-fix-details-windows-10/?expand_article=1
Beta Was this translation helpful? Give feedback.
All reactions