How to I remove the Powershell start text? How to I remove the Powershell start text? powershell powershell

How to I remove the Powershell start text?


Pass the -nologo option.

-NoLogo Starts the PowerShell console without displaying the copyright banner.

pwsh.exe -nologo ...other arguments...


If you are using the new Windows Terminal then:

  1. Go to Settings:

    Windows Terminal Settings

  2. Add the argument -nologo to the PowerShell command line:

    Powershell Command Line


The easiest way would be to add Clear-Host to the top of your $profile file.