11.PowerShell DSC之安装PowerShell Module
Posted talentzemin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11.PowerShell DSC之安装PowerShell Module相关的知识,希望对你有一定的参考价值。
打开https://powershellgallery.com,检索你需要的目标模块,我们以安装名为“xmysql”的module为例:
自动安装
1.执行命令install-module -name xmysql
1.x.可能会提示权限不足,那就使用管理员打开PowerShell
可能会提示nuget-anycpu-2.8.5.127.exe找不到,无法下载,可以到这里下载 https://oneget.org/nuget-anycpu-2.8.5.127.exe ,然后放在“C:\Program Files\PackageManagement\ProviderAssemblies”文件夹下。
(解决方案见:https://github.com/OneGet/oneget/issues/153)
2.正确的情况下,会稍等几秒钟就执行完毕,在C:\Program Files\WindowsPowerShell\Modules下查看下载的module
通过Get-Module -ListAvailable命令可以验证
手动安装
1.在powershellgallery下载对应的nupkg文件,下载后,重命名为.zip格式,解压,调整为module所需的文件夹结构,复制到C:\Program Files\WindowsPowerShell\Modules下
2.通过Get-Module -ListAvailable命令可以验证
参考:https://docs.microsoft.com/zh-cn/powershell/scripting/gallery/how-to/working-with-packages/manual-download?view=powershell-6#using-manual-download-to-acquire-a-package
以上是关于11.PowerShell DSC之安装PowerShell Module的主要内容,如果未能解决你的问题,请参考以下文章