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