(#70) Disable Bing Search for newer Windows versions

- The key already exists, and i'll refactor in a closer future how keys and values are inserted on registry

Thanks @MadhiasM
main
Plínio Larrubia 2 years ago committed by Plínio Larrubia
parent 7b9ccc56fe
commit c48aab986b
No known key found for this signature in database
GPG Key ID: 057B0A87CB137C69

@ -35,6 +35,7 @@ function Register-PersonalTweaksList() {
$PathToCUExplorer = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer"
$PathToCUExplorerAdvanced = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
$PathToCUPoliciesExplorer = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
$PathToCUPoliciesExplorer2 = "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer"
$PathToCUPoliciesLiveTiles = "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\PushNotifications"
$PathToCUNewsAndInterest = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds"
$PathToCUWindowsSearch = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search"
@ -197,6 +198,7 @@ function Register-PersonalTweaksList() {
Write-Status -Types $EnableStatus[0].Symbol, $TweakType -Status "$($EnableStatus[0].Status) Bing Search in Start Menu..."
Set-ItemProperty -Path "$PathToCUWindowsSearch" -Name "BingSearchEnabled" -Type DWord -Value $Zero
Set-ItemProperty -Path "$PathToCUWindowsSearch" -Name "CortanaConsent" -Type DWord -Value $Zero
Set-ItemProperty -Path "$PathToCUPoliciesExplorer2" -Name "DisableSearchBoxSuggestions" -Type DWord -Value $One
Write-Section -Text "Ease of Access"
Write-Caption -Text "Keyboard"

Loading…
Cancel
Save