⚡ PowerShell 5.1+

Check "Disable Bing Search Suggestions" Status

Reads the current registry value behind the "Disable Bing Search Suggestions" tweak so you can confirm whether it's applied.

By WindowsScripting.com · 834 B
Test-DisableBingSearchStatus.ps1
<#
.SYNOPSIS
    Checks whether "Disable Bing Search Suggestions" is currently applied.

.DESCRIPTION
    Reads HKCU:\Software\Policies\Microsoft\Windows\Explorer \ DisableSearchBoxSuggestions and reports its current value,
    or reports that it isn't set (falling back to the Windows default).

.EXAMPLE
    .\Test-DisableBingSearchStatus.ps1
#>

[CmdletBinding()]
param()

$regPath = 'HKCU:\Software\Policies\Microsoft\Windows\Explorer'

$value = Get-ItemProperty -Path $regPath -Name 'DisableSearchBoxSuggestions' -ErrorAction SilentlyContinue

if ($null -eq $value) {
    Write-Host "'DisableSearchBoxSuggestions' is not set at $regPath (using the Windows default)." -ForegroundColor Yellow
} else {
    Write-Host "Current value of 'DisableSearchBoxSuggestions': $($value.'DisableSearchBoxSuggestions')" -ForegroundColor Green
}