How to go fullscreen in PowerShell

PowershellFullscreenPowershell 2.0

Powershell Problem Overview


Is there a way of making powershell appear in fullscreen? Not only maximize it over the screen, but hiding the top-bar as well?

Also, since this is probably hard to do, how to maximize it according to current resolution?

Powershell Solutions


Solution 1 - Powershell

Try typing the following command:

mode 300

after the window opens

Solution 2 - Powershell

Right click the top bar and select properties. Then depending on your screen resolution select the appropriate size. (under the layout tab).

Solution 3 - Powershell

ALT + ENTER will full screen the powershell window in Windows 10

If this doesn't work right click the title bar > properties > options and make sure "Use Legacy console" is unchecked:

powershell

Solution 4 - Powershell

The trick to using PS in a modern fashion is to use a different type of terminal program. I use ConEmu as it is open-source and free.

Not only will it allow you to run the screen maximised, you can have several tabs, clear-type fonts, custom colours et cetera.

Together with the free 'Source Code Pro' font, it makes for a very nice PS environment.

Hope this helps

Solution 5 - Powershell

Display Options -> Fullscreen, or ALT+ENTER should enter fullscreen mode.

Solution 6 - Powershell

You can create a shortcut with

"%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe " -NoExit -Command "mode 300"

The -NoExit option will keep the console open after running the startup command, and the -Command option of course runs the command on console startup. Besides, if you're not an administrator or you're running Windows 8 (hence apps run as not privileged by default) you can setup your shortcut to run Powershell as administrator always.

http://technet.microsoft.com/en-us/magazine/ff629472.aspx">Source</a>

Solution 7 - Powershell

If it would be sufficient to merely maximize your PowerShell window, you can simply add -WindowStyle Maximized to your PowerShell shortcut:

C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noexit -WindowStyle Maximized

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questioncc0View Question on Stackoverflow
Solution 1 - PowershellHugh ChungView Answer on Stackoverflow
Solution 2 - PowershelltechnajView Answer on Stackoverflow
Solution 3 - PowershelldogView Answer on Stackoverflow
Solution 4 - Powershelluser2447446View Answer on Stackoverflow
Solution 5 - PowershellBrandon FrohbieterView Answer on Stackoverflow
Solution 6 - PowershellmaawView Answer on Stackoverflow
Solution 7 - PowershellKsuvi KhorView Answer on Stackoverflow