如何在 Powershell 4 中安装 Powershell 模块?
how to install a Powershell module in Powershell 4?
我在 Powershell 4
上有一些机器
即使在我将新的 powershell 模块放置在模块路径中之后,在这些机器中
它们不会出现在 Modules
下拉列表中 - 如上所述。
当我在 Powershell 5 的机器上做同样的事情时,我可以在 Modules
下拉列表中看到新模块,如下所示。
为了使新模块显示在 Powershell 4 的 modules
下拉列表中,我还需要做什么?
关注评论中的 provided by Larnu
在找到 powershell 模块文件 .psm1
和 运行 后,执行以下命令:
import-Module "C:\Program Files\WindowsPowerShell\Modules\dbatools.0.141\dbatools.psm1"
我在 Powershell 4
上有一些机器即使在我将新的 powershell 模块放置在模块路径中之后,在这些机器中
它们不会出现在 Modules
下拉列表中 - 如上所述。
当我在 Powershell 5 的机器上做同样的事情时,我可以在 Modules
下拉列表中看到新模块,如下所示。
为了使新模块显示在 Powershell 4 的 modules
下拉列表中,我还需要做什么?
关注评论中的
在找到 powershell 模块文件 .psm1
和 运行 后,执行以下命令:
import-Module "C:\Program Files\WindowsPowerShell\Modules\dbatools.0.141\dbatools.psm1"