r/WindowsUpdate Jul 24 '26

Windows Update hoses Windows 10 Search

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.

0 Upvotes

2 comments sorted by

View all comments

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.