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

  1. Press Windows + R to open the Run dialog box.
  2. Type regedit and press Enter or click OK.
  3. 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:

  1. Navigate to the following path in the left sidebar:

    HKEY_CURRENT_USER\Console
  2. In 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.
  3. Double-click WindowAlpha.

  4. Set the Value data to 255 (with the Base set to Decimal) or ff (with the Base set to Hexadecimal). A value of 255 represents 100% opacity (no transparency).

  5. 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:

  1. Navigate to the following registry key:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize
  2. Locate the DWORD value named EnableTransparency.

  3. Double-click EnableTransparency and set its Value data to 0.

  4. Click OK.


Step 4: Apply the Changes

  1. Close the Registry Editor.
  2. 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.