⚡ PowerShell 5.1+

Disable Windows Tips & Suggestions

Stops Windows from showing tips and suggestions notifications.

By WindowsScripting.com · 745 B
Set-DisableWindowsTips.ps1
<#
.SYNOPSIS
    Disable Windows Tips & Suggestions.

.DESCRIPTION
    Stops Windows from showing tips and suggestions notifications.

    Sets HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager \ SoftLandingEnabled to 0.

.EXAMPLE
    .\Set-DisableWindowsTips.ps1
#>

[CmdletBinding()]
param()

$regPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'

if (-not (Test-Path $regPath)) {
    New-Item -Path $regPath -Force | Out-Null
}

New-ItemProperty -Path $regPath -Name 'SoftLandingEnabled' -Value 0 -PropertyType DWord -Force | Out-Null

Write-Host "Disable Windows Tips & Suggestions applied. Sign out and back in (or restart explorer.exe) for it to fully take effect." -ForegroundColor Green