⚡ PowerShell 5.1+

Disable Balloon Tip Notifications

Disables the small notification balloon tips in the system tray.

By WindowsScripting.com · 733 B
Set-DisableBalloonTips.ps1
<#
.SYNOPSIS
    Disable Balloon Tip Notifications.

.DESCRIPTION
    Disables the small notification balloon tips in the system tray.

    Sets HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced \ EnableBalloonTips to 0.

.EXAMPLE
    .\Set-DisableBalloonTips.ps1
#>

[CmdletBinding()]
param()

$regPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'

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

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

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