mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-12-17 17:55:28 +00:00
31 lines
916 B
PowerShell
31 lines
916 B
PowerShell
|
|
function Invoke-WinUtilBingSearch {
|
||
|
|
<#
|
||
|
|
|
||
|
|
.DESCRIPTION
|
||
|
|
Sets Bing Search on or off
|
||
|
|
|
||
|
|
#>
|
||
|
|
Param($Enabled)
|
||
|
|
Try{
|
||
|
|
if ($Enabled -eq $false){
|
||
|
|
Write-Host "Enabling Bing Search"
|
||
|
|
$value = 1
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
Write-Host "Disabling Bing Search"
|
||
|
|
$value = 0
|
||
|
|
}
|
||
|
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search"
|
||
|
|
Set-ItemProperty -Path $Path -Name BingSearchEnabled -Value $value
|
||
|
|
}
|
||
|
|
Catch [System.Security.SecurityException] {
|
||
|
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||
|
|
}
|
||
|
|
Catch [System.Management.Automation.ItemNotFoundException] {
|
||
|
|
Write-Warning $psitem.Exception.ErrorRecord
|
||
|
|
}
|
||
|
|
Catch{
|
||
|
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||
|
|
Write-Warning $psitem.Exception.StackTrace
|
||
|
|
}
|
||
|
|
}
|