Você precisa personalizar a função de prompt no seu perfil do PowerShell ( %userprofile%\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
); pode estar em branco ou até mesmo não existir se você nunca o modificou antes.
-
Abra o seu perfil (por exemplo, abra o arquivo mencionado anteriormente ou, enquanto estiver no PowerShell,
Notepad $profile
) -
Adicione o seguinte ao seu perfil:
function prompt { $p = Split-Path -leaf -path (Get-Location) "$p> " }
-
Salvar o perfil
-
Reinicie o PowerShell
Opcional . Se você receber uma mensagem dizendo que não tem permissão para executar scripts, será necessário copiar / colar essa linha no PowerShell:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
e reinicie.
Windows PowerShell execution policies let you determine the conditions under which Windows PowerShell loads configuration files and runs scripts.
You can set an execution policy for the local computer, for the current user, or for a particular session. You can also use a Group Policy setting to set execution policy for computers and users.
Source: Microsoft Documentation