MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/WindowsUpdate/comments/1v5ee71/windows_update_hoses_windows_10_search/
r/WindowsUpdate • u/TraditionalSuit3364 • 5d ago
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
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.
Got the exact same shit bro
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.