@echo off
:: ============================================================
:: CheckDisableTaskbarTransparencyStatus.bat
::
:: Checks whether "Disable Taskbar Transparency" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableTransparency" 2>nul

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