0
我想知道是否有可能改變的PowerShell的外觀,所以你必須在命令行目錄線下方的一行行:更改PowerShell的外觀 - 命令行下面的目錄
C:\your\directory\path\will\go\here >
$ now-a-super-long-command-can-be-entered-here
我想知道是否有可能改變的PowerShell的外觀,所以你必須在命令行目錄線下方的一行行:更改PowerShell的外觀 - 命令行下面的目錄
C:\your\directory\path\will\go\here >
$ now-a-super-long-command-can-be-entered-here
您需要修改prompt
函數。
下面會做你想要什麼:
function prompt {
Write-Host "$(Get-Location) > "
return "$ "
}
只需將其粘貼到現有的PowerShell窗口將立即啓用它。如果您想永久保存,請將其添加到您的profile.ps1
。
This link有關於修改配置文件的信息。
可能重複[Windows powershell:更改命令提示符](http://stackoverflow.com/questions/5725888/windows-powershell-changing-the-command-prompt) – 2014-10-22 11:37:13