🖥️ Batch (CMD)

Check "Disable Taskbar Chat Icon" Status (Batch)

Uses reg query to check the current value behind the "Disable Taskbar Chat Icon" tweak.

By WindowsScripting.com · 459 B
CheckDisableChatIconStatus.bat
@echo off
:: ============================================================
:: CheckDisableChatIconStatus.bat
::
:: Checks whether "Disable Taskbar Chat Icon" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'TaskbarMn' is not set (using the Windows default^).
)
pause