如何安装PowerShell模块版本的特定版本?
要安装特定版本的PowerShell模块,我们需要在Install-Module命令中使用-RequiredVersion参数。
要查找可用的模块版本,我们可以将Find-Module命令与-AllVersions参数一起使用,该参数将检索PSGallery中可用的模块的所有版本。
在此示例中,我们将使用7Zip4PowerShell模块。
示例
Find-Module 7zip4PowerShell -AllVersions | ft -AutoSize
运行此命令时,可以看到此模块有多个版本。
输出结果
Version Name Repository------- ---- ----------
1.13.0 7Zip4Powershell PSGallery
1.12.0 7Zip4Powershell PSGallery
1.11.0 7Zip4Powershell PSGallery
1.10.0.0 7Zip4Powershell PSGallery
1.9.0 7Zip4Powershell PSGallery
1.8.0 7Zip4Powershell PSGallery
1.7.1 7Zip4Powershell PSGallery
我们需要在这里为所有用户安装1.9.0版,因此我们将使用以下命令。
示例
Install-Module 7Zip4PowerShell -RequiredVersion 1.8.0 -Scope AllUsers -Force -Verbose
要在远程服务器上安装PowerShell模块,请使用以下命令,
语法
Invoke-Command -ComputerName RemoteMachine1 -ScriptBlock {Install-Module 7Zip4PowerShell -RequiredVersion 1.8.0 -Scope AllUsers -Force -Verbose}
以上是 如何安装PowerShell模块版本的特定版本? 的全部内容, 来源链接: utcz.com/z/352722.html