Browse Source

Add files via upload

pull/240/head
Dmitry Nefedov 3 years ago
committed by GitHub
parent
commit
a64e8fc3e6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      Sophia/PowerShell 5.1/Module/Sophia.psm1

12
Sophia/PowerShell 5.1/Module/Sophia.psm1

@ -1341,13 +1341,13 @@ function TailoredExperiences
<# <#
.SYNOPSIS .SYNOPSIS
Bing search in the Start Menu (for the USA only) Bing search in the Start Menu
.PARAMETER Disable .PARAMETER Disable
Disable Bing search in the Start Menu (for the USA only) Disable Bing search in the Start Menu
.PARAMETER Enable .PARAMETER Enable
Enable Bing search in the Start Menu (for the USA only) Enable Bing search in the Start Menu
.EXAMPLE .EXAMPLE
BingSearch -Disable BingSearch -Disable
@ -1380,8 +1380,6 @@ function BingSearch
switch ($PSCmdlet.ParameterSetName) switch ($PSCmdlet.ParameterSetName)
{ {
"Disable" "Disable"
{
if ((Get-WinHomeLocation).GeoId -eq 244)
{ {
if (-not (Test-Path -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer)) if (-not (Test-Path -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer))
{ {
@ -1389,16 +1387,12 @@ function BingSearch
} }
New-ItemProperty -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name DisableSearchBoxSuggestions -PropertyType DWord -Value 1 -Force New-ItemProperty -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name DisableSearchBoxSuggestions -PropertyType DWord -Value 1 -Force
} }
}
"Enable" "Enable"
{
if ((Get-WinHomeLocation).GeoId -eq 244)
{ {
Remove-ItemProperty -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name DisableSearchBoxSuggestions -Force -ErrorAction Ignore Remove-ItemProperty -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name DisableSearchBoxSuggestions -Force -ErrorAction Ignore
} }
} }
} }
}
#endregion Privacy & Telemetry #endregion Privacy & Telemetry
#region UI & Personalization #region UI & Personalization

Loading…
Cancel
Save