永久点源文件?

Permanently dot Source a File?

我一直在使用 Custom-Powershell-Script。我可以简单地点源文件,但我必须在每个会话中都这样做。

. .\Hello-World.ps1

有没有办法永久点源文件?我不想一遍又一遍地这样做。

首先检查您的探查器是否存在。

Test-Path $profile

如果它返回 False,我们必须创建它们。 运行 PS 处于提升模式。

New-Item -path $profile -type file –force 

所以它会要求确认。

从路径中打开名为 Microsoft.Powershell_profile.ps1 的文件并直接在其中添加条目,例如:

. .\Hello-World.ps1

完成后,保存并重启。如果您再次打开它,您应该能够在 Hello-World 中看到 Dot Source Functions。ps1

默认情况下 $profile 路径应该是:

C:\Users\Username\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1

希望对您有所帮助。