有没有办法删除 VS Code 中 Powershell 终端的横幅?
答案1
根据集成终端功能文档可以通过设置文件添加 shell 参数。
在这种情况下,您需要添加参数-NoLogo
。
例如,我像这样更新了 Windows 的现有 PowerShell 配置文件:
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": ["-NoLogo"] // <---- this is the addition
},
// other profiles here
}
答案2
您可以$profile
使用文本编辑器打开并在其中输入cls
,它将在每次启动时清除终端窗口。
如果您不使用 VSCode,您可以使用 创建快捷方式powershell.exe -NoLogo
。
答案3
在 Windows 终端中,转到Settings
,然后单击Add a new Profile
底部左侧窗格中的 。然后,复制Windows Powershell
配置文件。确保在 中使用该配置文件Startup
。单击新配置文件并转到Command Line
并添加-nologo
,它应该如下所示:
%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -nologo