Newly opened terminal turns completely empty #23610

Closed
opened 2026-01-31 08:47:08 +00:00 by claunia · 4 comments
Owner

Originally created by @Kiritow on GitHub (Sep 14, 2025).

Windows Terminal version

1.23.12371.0

Windows build number

10.0.19045.6332

Other Software

No response

Steps to reproduce

A newly opened window has a chance of becoming completely blank. Once this happens, all subsequently created windows will also be blank, until all Windows Terminal windows are closed and a new one is opened again.

Windows Terminal Config JSON as follows:

{
    "$help": "https://aka.ms/terminal-documentation",
    "$schema": "https://aka.ms/terminal-profiles-schema",
    "actions": [],
    "copyFormatting": "none",
    "copyOnSelect": true,
    "defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
    "keybindings": 
    [
        {
            "id": "Terminal.CopyToClipboard",
            "keys": "ctrl+c"
        },
        {
            "id": "Terminal.PasteFromClipboard",
            "keys": "ctrl+v"
        },
        {
            "id": "Terminal.DuplicatePaneAuto",
            "keys": "alt+shift+d"
        }
    ],
    "newTabMenu": 
    [
        {
            "type": "remainingProfiles"
        }
    ],
    "profiles": 
    {
        "defaults": {},
        "list": 
        [
            {
                "commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
                "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "hidden": false,
                "name": "Windows PowerShell"
            },
            {
                "commandline": "%SystemRoot%\\System32\\cmd.exe",
                "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
                "hidden": false,
                "name": "Command Prompt"
            },
            {
                "guid": "{963ff2f7-6aed-5ce3-9d91-90d99571f53a}",
                "hidden": true,
                "name": "Ubuntu-24.04",
                "source": "Windows.Terminal.Wsl"
            },
            {
                "guid": "{d8e96812-b789-5068-a5ae-10b2fb53e95f}",
                "hidden": false,
                "name": "Ubuntu 24.04.1 LTS",
                "source": "CanonicalGroupLimited.Ubuntu24.04LTS_79rhkp1fndgsc"
            }
        ]
    },
    "schemes": [],
    "themes": []
}

Expected Behavior

All windows should open normally.

Actual Behavior

The newly opened window is completely empty.

Image
Originally created by @Kiritow on GitHub (Sep 14, 2025). ### Windows Terminal version 1.23.12371.0 ### Windows build number 10.0.19045.6332 ### Other Software _No response_ ### Steps to reproduce A newly opened window has a chance of becoming completely blank. Once this happens, all subsequently created windows will also be blank, until all Windows Terminal windows are closed and a new one is opened again. Windows Terminal Config JSON as follows: ``` { "$help": "https://aka.ms/terminal-documentation", "$schema": "https://aka.ms/terminal-profiles-schema", "actions": [], "copyFormatting": "none", "copyOnSelect": true, "defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "keybindings": [ { "id": "Terminal.CopyToClipboard", "keys": "ctrl+c" }, { "id": "Terminal.PasteFromClipboard", "keys": "ctrl+v" }, { "id": "Terminal.DuplicatePaneAuto", "keys": "alt+shift+d" } ], "newTabMenu": [ { "type": "remainingProfiles" } ], "profiles": { "defaults": {}, "list": [ { "commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "hidden": false, "name": "Windows PowerShell" }, { "commandline": "%SystemRoot%\\System32\\cmd.exe", "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "hidden": false, "name": "Command Prompt" }, { "guid": "{963ff2f7-6aed-5ce3-9d91-90d99571f53a}", "hidden": true, "name": "Ubuntu-24.04", "source": "Windows.Terminal.Wsl" }, { "guid": "{d8e96812-b789-5068-a5ae-10b2fb53e95f}", "hidden": false, "name": "Ubuntu 24.04.1 LTS", "source": "CanonicalGroupLimited.Ubuntu24.04LTS_79rhkp1fndgsc" } ] }, "schemes": [], "themes": [] } ``` ### Expected Behavior All windows should open normally. ### Actual Behavior The newly opened window is completely empty. <img width="890" height="482" alt="Image" src="https://github.com/user-attachments/assets/c2d1b00d-7b32-49a7-91f6-09da86935770" />
claunia added the Needs-TriageIssue-Bug labels 2026-01-31 08:47:08 +00:00
Author
Owner

@Sudiukil commented on GitHub (Sep 14, 2025):

Just chiming in to say I'm having the exact same issue as of yesterday.

Completely killing and restarting Terminal fixes the issue.

EDIT: seems related to #19346 and it seems to be fixed in 1.25+ (current Canary version).

@Sudiukil commented on GitHub (Sep 14, 2025): Just chiming in to say I'm having the exact same issue as of yesterday. Completely killing and restarting Terminal fixes the issue. EDIT: seems related to #19346 and it seems to be fixed in 1.25+ (current Canary version).
Author
Owner

@myokeeh commented on GitHub (Sep 16, 2025):

I am running into the same behavior (or at least same empty windows).

I have a Task Scheduler task that runs at Windows startup

powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File "C:\bedrock servers.ps1"

bedrock servers.ps1:

C:\Users\User\AppData\Local\Microsoft\WindowsApps\wt.exe --window _bedrockserver C:\bedrock-server\bedrock_server.exe
C:\Users\User\AppData\Local\Microsoft\WindowsApps\wt.exe --window _bedrockserver C:\bedrock-server-cousins1\bedrock_server.exe

Result:

Image Image
@myokeeh commented on GitHub (Sep 16, 2025): I am running into the same behavior (or at least same empty windows). I have a Task Scheduler task that runs at Windows startup ``` powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File "C:\bedrock servers.ps1" ``` bedrock servers.ps1: ``` C:\Users\User\AppData\Local\Microsoft\WindowsApps\wt.exe --window _bedrockserver C:\bedrock-server\bedrock_server.exe C:\Users\User\AppData\Local\Microsoft\WindowsApps\wt.exe --window _bedrockserver C:\bedrock-server-cousins1\bedrock_server.exe ``` Result: <img width="1908" height="1118" alt="Image" src="https://github.com/user-attachments/assets/446425dc-9888-47e9-a2c6-feaad3f12510" /> <img width="337" height="166" alt="Image" src="https://github.com/user-attachments/assets/63fb6f3d-c465-4525-83de-64ccd8c62249" />
Author
Owner

@DHowett commented on GitHub (Oct 1, 2025):

We released a servicing update last week that should fix this. Thanks for the reports and help chasing down the root cause!

@DHowett commented on GitHub (Oct 1, 2025): We released a servicing update last week that should fix this. Thanks for the reports and help chasing down the root cause!
Author
Owner

@myokeeh commented on GitHub (Oct 10, 2025):

Fixed for me. Thanks!

@myokeeh commented on GitHub (Oct 10, 2025): Fixed for me. Thanks!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#23610