🖥️ Batch (CMD)

Check "Disable Taskbar Widgets Icon" Status (Batch)

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

By WindowsScripting.com · 468 B
CheckDisableTaskbarWidgetsStatus.bat
@echo off
:: ============================================================
:: CheckDisableTaskbarWidgetsStatus.bat
::
:: Checks whether "Disable Taskbar Widgets Icon" is currently applied.
:: ============================================================

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

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