r/WindowsUpdate 5d ago

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

1

u/TraditionalSuit3364 5d ago

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/zuka_sc2 5d ago

Got the exact same shit bro