🖥️ Batch (CMD)
Disable Taskbar Transparency (Batch)
Turns off the translucent taskbar/Start menu effect for a small performance gain. Applies the tweak via reg.exe.
SetDisableTaskbarTransparency.bat
@echo off
:: ============================================================
:: SetDisableTaskbarTransparency.bat
::
:: Disable Taskbar Transparency.
:: Turns off the translucent taskbar/Start menu effect for a small performance gain.
:: ============================================================
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableTransparency" /t REG_DWORD /d "0" /f
if %ERRORLEVEL% EQU 0 (
echo Disable Taskbar Transparency applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause