Created
January 12, 2023 16:10
-
-
Save bernhardkaindl/4a3e17eefecb66ccbecfddd409cbd7c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable Bing search suggestions and Web search in the start menu search in PowerShell (my need to be started as "run as Administrator") | |
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Search -Name "BingSearchEnabled" -Value 1 -Type DWord | |
Set-ItemProperty -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name "DisableSearchBoxSuggestions" -Value 1 -Type DWORD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Then restart the taskbar from an administrative command prompt with:
taskkill /f /im explorer.exe && start explorer.exe
To kill the Microsoft Edge Browser (it defaults to keep running even when you close it):
taskkill /f /im msedge.exe