How to go fullscreen in PowerShell

后端 未结 7 2070

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

7条回答
  •  [愿得一人]
    2020-12-29 18:27

    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.

    Source

提交回复
热议问题