0

PsGet可以使用本地目录中的旧社区提供的模块或远程 HTTP 服务器中的 zip 来安装 Powershell 模块:

PSGet\Install-Module -ModulePath "C:\path\to\source\of\MyModule"
PsGet\Install-Module -ModuleUrl "http://path/to/MyModule.zip"

可以对PowershellGet模块做同样的事情吗?似乎 PowershellGet只能从 NuGet 存储库安装模块。

任何建议表示赞赏。

4

1 回答 1

1

我试过这个,我们让它工作的唯一方法是在本地机器上创建一个临时 PowerShell 存储库(使用 Register-PSRepository),然后使用 Install-Module(指定你的新存储库)安装 cmdlet 然后清理临时存储库。很牛逼。

于 2021-04-07T16:42:34.677 回答