永久添加PowerShell模块吗? (导入模块)

时间:2019-01-13 22:44:24

标签: windows powershell module powershell-v3.0 import-module

我正在使用我在GitHub上找到的第三方模块,并将其导入:

powershell Import-Module .\foo.ps1

此操作成功导入,模块运行良好。但是,当我打开一个新的PowerShell终端时,它不会加载该模块,因此每次都必须运行Import-Module命令。可以永久加载模块吗?

我正在使用Windows 10和PowerShell v3。

2 个答案:

答案 0 :(得分:4)

您可以将其添加到默认情况下Powershell加载的配置文件之一。最好的选择是

%UserProfile%\My Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 

%UserProfile%\My Documents\WindowsPowerShell\profile.ps1

有关完整列表,请参见https://docs.microsoft.com/en-us/previous-versions//bb613488(v=vs.85)

答案 1 :(得分:1)

由于Powershell v3模块会自动加载,如果您使用Install-Module将它们安装到正确的位置。

以下是有关安装Powershell模块的其他信息:Installing a PowerShell Module