⚡ PowerShell 5.1+

Disable Windows Welcome Experience

Disables the full-screen "suggested content" tips that appear after updates.

By WindowsScripting.com · 786 B
Set-DisableWindowsWelcomeExperience.ps1
<#
.SYNOPSIS
    Disable Windows Welcome Experience.

.DESCRIPTION
    Disables the full-screen "suggested content" tips that appear after updates.

    Sets HKCU:\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement \ ScoobeSystemSettingEnabled to 0.

.EXAMPLE
    .\Set-DisableWindowsWelcomeExperience.ps1
#>

[CmdletBinding()]
param()

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

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

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

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