Disable Windows Console Transparency Using Regedit
This guide explains how to disable transparency and acrylic effects in the Windows console interface by modifying specific entries in the Windows Registry (Regedit). By adjusting these settings, you can ensure a solid, fully opaque background for standard console windows and system-wide command-line interfaces.
Step 1: Open the Registry Editor
- Press
Windows + Rto open the Run dialog box. - Type
regeditand pressEnteror click OK. - If prompted by User Account Control (UAC), click Yes to grant administrative privileges.
Step 2: Disable Console Window Transparency (WindowAlpha)
To disable transparency for standard Windows Console (Command Prompt
and legacy PowerShell consoles), modify the WindowAlpha
DWORD value:
Navigate to the following path in the left sidebar:
HKEY_CURRENT_USER\ConsoleIn the right pane, look for a DWORD (32-bit) value named
WindowAlpha.- If it does not exist, right-click an empty space in the right pane,
select New > DWORD (32-bit) Value,
and name it
WindowAlpha.
- If it does not exist, right-click an empty space in the right pane,
select New > DWORD (32-bit) Value,
and name it
Double-click
WindowAlpha.Set the Value data to
255(with the Base set to Decimal) orff(with the Base set to Hexadecimal). A value of 255 represents 100% opacity (no transparency).Click OK to save the changes.
Note: If you have customized settings for specific console
shortcuts (such as PowerShell or CMD), check the subkeys under
HKEY_CURRENT_USER\Console (e.g.,
%SystemRoot%_System32_cmd.exe) and update the
WindowAlpha value there as well.
Step 3: Disable System-Wide Transparency Effects (Optional)
If your console inherits transparency from Windows system-level visual settings, disable the global transparency toggle:
Navigate to the following registry key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\PersonalizeLocate the DWORD value named
EnableTransparency.Double-click
EnableTransparencyand set its Value data to0.Click OK.
Step 4: Apply the Changes
- Close the Registry Editor.
- Restart any open command-line or console windows for the opacity settings to take effect. If changes do not appear immediately, restart Windows Explorer via Task Manager or reboot your computer.