How to remove Windows Terminal from startup?

Discussion in 'Windows 11' started by Windows 10 User, Nov 23, 2022.

  1. Windows 10 User

    Windows 10 User MDL Expert

    Feb 2, 2017
    1,908
    118
    60
    #1 Windows 10 User, Nov 23, 2022
    Last edited: Jul 13, 2023
    How can one remove Windows Terminal from startup? It appears as disabled. I'm using Windows 11 22H2.
     

    Attached Files:

  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,734
    5,179
    120
    Open terminal settings
    Check startup option
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Windows 10 User

    Windows 10 User MDL Expert

    Feb 2, 2017
    1,908
    118
    60
    Already did. Like I said, it states it's disabled. I want to get rid of it in Task Manager.
     
  4. 12 lb Turkey

    12 lb Turkey MDL Junior Member

    Nov 24, 2022
    80
    47
    0
    Terminal creates a UWP StartupTask, which can't be removed by normal commands. You have to block this task before App provisioning.

    Mount source ISO.
    Integrate the latest version of Terminal .msixbundle (optional).

    cd \Program Files\WindowsApps\Microsoft.WindowsTerminal_n.nn.nnnnn.n_x64__8wekyb3d8bbwe
    Edit AppxManifest.xml, and remove lines:
    Code:
            <uap5:Extension Category="windows.startupTask">
              <uap5:StartupTask TaskId="StartTerminalOnLoginTask" Enabled="false" DisplayName="ms-resource:AppName" />
            </uap5:Extension>
    
    Add reg entry to prevent WU from updating UWP apps:
    Code:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore]
    "AutoDownload"=dword:00000002
    
    Make new ISO & install.

    Don't upgrade Terminal app, and this stops working if MS ever decides to patch Terminal using a CU.
     
  5. Windows 10 User

    Windows 10 User MDL Expert

    Feb 2, 2017
    1,908
    118
    60
    What is app provisioning? So, there's no way to fix this problem on a live install?

    I guess it's too much work, then.
     
  6. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    2,372
    1,589
    90
    more simple remove windows terminal

    powershell and command prompt work withouts this
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Windows 10 User

    Windows 10 User MDL Expert

    Feb 2, 2017
    1,908
    118
    60
    I don't want to remove it.