How can I start the Windows Terminal maximized by default?

Viewed 5735

Is there a way to force the Windows Terminal to start maximized (not full-screen - I still want my taskbar to be there) by default?

2 Answers

In addition to what @Petar said, since preview v.1.1.1671.0, --fullscreen and --maximized are two optional switches for the wt execution alias if you're automating something and trying to run the terminal maximized only sometimes.

So, these two ways of launching the terminal from the command line are now an option:

wt --maximized

wt --fullscreen
Related