我想编辑我的 Powershell 提示符,如下所述 https://superuser.com/questions/1259900/how-to-colorize-the-powershell-prompt。但是,我的 $profile 变量引用的路径不...
我想编辑我的 Powershell 提示符,如下所述 https://superuser.com/questions/1259900/how-to-colorize-the-powershell-prompt 。但是,我的 $profile 变量引用了一个不存在的路径 C:\Users\ferdi\OneDrive\Documenti\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
。具体来说,WindowsPowerShell 文件夹不存在。如何找到我的 $profile 的真实位置,以便我可以编辑它并更改我的提示符?
多谢!
的值 automatic $PROFILE
variable is the true location of your profile file ,更准确地说是 当前用户 (您)和 当前主机 (托管 PowerShell 的应用程序,通常是控制台/终端窗口)的配置文件的真实位置。
p1
p2
只是 PowerShell doesn't create any profile files by default, and it doesn't even create the directories for them .
p4
if (-not (Test-Path $PROFILE)) { New-Item -Force $PROFILE }
然后,要使用 Visual Studio Code 编辑您的配置文件,例如,运行, code $PROFILE
或者,如果没有安装自定义文本编辑器,请使用 notepad $PROFILE
.
é
),请务必将文件保存为 带有 BOM 的 UTF-8 ,这是 Windows PowerShell 正确读取文件所必需的,并且在 PowerShell (Core) 7 .