Can I set Windows Terminal to open command windows from "start" in a new tab?

6,566

This is possible with Windows Terminal from version 0.9 onwards.

wt -d . ; new-tab -d C:\ pwsh.exe

Opens the Terminal with two tabs. The first is running the default profile starting in the current working directory. The second is using the default profile with pwsh.exe as the "commandline" (instead of the default profile’s "commandline") starting in the C:\ directory.

There are more examples on how to use this in the release notes of Windows Terminal 0.9: https://devblogs.microsoft.com/commandline/windows-terminal-preview-v0-9-release/

Share:
6,566

Related videos on Youtube

Patrick Szalapski
Author by

Patrick Szalapski

Updated on September 18, 2022

Comments

  • Patrick Szalapski
    Patrick Szalapski over 1 year

    Note: This is a question about Windows Terminal, a new command-line shell as of 2019, not Windows Command Prompt command line shell that is included with Windows.

    If I am running cmd.exe in Windows Terminal, and I run start cmd, it opens a new command prompt window outside of Windows Terminal.

    Is there any way to set Windows Terminal to "intercept" or otherwise harness that command so that it instead opens in a new tab in Windows Terminal (obviously running cmd.exe, in this example)?

    Obviously, I can open a new tab with the mouse or a hotkey like Ctrl+Shift+2, but I'd like a way to do so from a batch file.

    • Ecstasy
      Ecstasy about 4 years
      It is difficult to understand your question, try only typing "cmd" in your Terminal. Is that the sort of result you are looking for?
    • Patrick Szalapski
      Patrick Szalapski about 4 years
      No. That starts cmd.exe in the same window and tab. How do I start cmd.exe in a new tab in Windows Terminal?
    • Ecstasy
      Ecstasy about 4 years
      Using "start <program>" always opens a new window of the program for me. What exact version of Windows are you operating on?
    • Patrick Szalapski
      Patrick Szalapski about 4 years
      I am using Windows Terminal, not Command Prompt. I wonder if you aren't aware of Windows Terminal?
    • Ecstasy
      Ecstasy about 4 years
      I am not aware of Windows Terminal. Let me go educate myself really quick.
    • LPChip
      LPChip about 4 years
      Might be possible, maybe there is hope using wt.exe. See: weblog.west-wind.com/posts/2019/Sep/03/…
    • LPChip
      LPChip about 4 years
      okay, wt creates a new terminal window, but you can't get it to make new tabs yet. seems to not respond to the commandline parameters just yet.
  • Patrick Szalapski
    Patrick Szalapski almost 4 years
    Is there any way to open a new tab from inside the terminal itself?
  • dennohpeter
    dennohpeter over 3 years
    No, Windows Terminal is not yet capable of opening new tabs or panes in an existing instance. See :docs.microsoft.com/en-us/windows/terminal/… @PatrickSzalapski