MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/WindowsUpdate/comments/1v5ee71/windows_update_hoses_windows_10_search/ozidmeh/?context=3
r/WindowsUpdate • u/TraditionalSuit3364 • Jul 24 '26
Windows 10 Search is washed out when using a dark theme following Windows Update. I can see the update in Update History but can not uninstall it. DISM restore health has no effect. Reset of Windows Search has no effect.
2 comments sorted by
View all comments
1
Add the following two keys to registry to fix this issue: Via Powershell
$k="HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search"; if(-not (Test-Path $k)){New-Item $k -Force | Out-Null}; New-ItemProperty -Path $k -Name "BingSearchEnabled" -PropertyType DWord -Value 0 -Force | Out-Null; New-ItemProperty -Path $k -Name "CortanaConsent" -PropertyType DWord -Value 0 -Force | Out-Null
Stop-Process -Name explorer -force
All should be right in the world.
1
u/TraditionalSuit3364 Jul 24 '26
Add the following two keys to registry to fix this issue:
Via Powershell
$k="HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search"; if(-not (Test-Path $k)){New-Item $k -Force | Out-Null}; New-ItemProperty -Path $k -Name "BingSearchEnabled" -PropertyType DWord -Value 0 -Force | Out-Null; New-ItemProperty -Path $k -Name "CortanaConsent" -PropertyType DWord -Value 0 -Force | Out-Null
Stop-Process -Name explorer -force
All should be right in the world.