⚡ PowerShell 5.1+
Check "Disable Windows Tips & Suggestions" Status
Reads the current registry value behind the "Disable Windows Tips & Suggestions" tweak so you can confirm whether it's applied.
Test-DisableWindowsTipsStatus.ps1
<#
.SYNOPSIS
Checks whether "Disable Windows Tips & Suggestions" is currently applied.
.DESCRIPTION
Reads HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager \ SoftLandingEnabled and reports its current value,
or reports that it isn't set (falling back to the Windows default).
.EXAMPLE
.\Test-DisableWindowsTipsStatus.ps1
#>
[CmdletBinding()]
param()
$regPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'
$value = Get-ItemProperty -Path $regPath -Name 'SoftLandingEnabled' -ErrorAction SilentlyContinue
if ($null -eq $value) {
Write-Host "'SoftLandingEnabled' is not set at $regPath (using the Windows default)." -ForegroundColor Yellow
} else {
Write-Host "Current value of 'SoftLandingEnabled': $($value.'SoftLandingEnabled')" -ForegroundColor Green
}