📄 JScript (WSH)

Disable Taskbar Chat Icon (JScript)

Removes the Chat/Teams icon from the Windows 11 taskbar. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).

By WindowsScripting.com · 607 B
SetDisableChatIcon.js
// ============================================================
// SetDisableChatIcon.js
//
// Disable Taskbar Chat Icon.
// Removes the Chat/Teams icon from the Windows 11 taskbar.
//
// Usage: cscript SetDisableChatIcon.js
// ============================================================

var objShell = WScript.CreateObject("WScript.Shell");

try {
    objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarMn", 0, "REG_DWORD");
    WScript.Echo("Disable Taskbar Chat Icon applied.");
} catch (e) {
    WScript.Echo("Failed to apply tweak: " + e.description);
}