转载请注明出处,不胜感激!关于PowerShell的文章,我也同步发布在我的微信公共订阅号里,欢迎关注:[一起PowerShell]
上一篇在PowerShellGet系列中【PowerShellGet系列(一):PowerShell的最佳管理能手】文章中,我们介绍了有关什么是PowerShellGet,今天这篇我们就来看看如何操作PowerShellGet模块里的命令。
不过在正式介绍里面的相关命令操作时,先让我们来简单回顾一下什么是PowerShellGet。
PowerShellGet是可以用来查找,安装,更新,管理等操作PowerShell模块与脚本的一个套件包,也就是所谓的管理PowerShell的包管理器。PowerShellGet里内置了一系列用于管理PowerShell模块与脚本的相关命令。用户可以使用PowerShellGet内的相关命令获取在线的PowerShell模块和脚本。
大家知道了什么是PowerShellGet,按照上面解释的说法,那是不是说明它里面所包含的Cmdlets就是各种操作的相关命令。让我使用Get-Command -Module PowerShellGet命令行来查看下里面包含的命令。
友好提示:文章里的一些代码片段单行内容比较长,如果排版有些拥挤,建议手机切换成横屏模式游览会舒服很多。
PS C:\Users\Administrator> Get-Command -Module PowerShellGet
CommandType Name Version Source
----------- ---- ------- ------
Function Find-Command 1.0.0.1 PowerShellGet
Function Find-DscResource 1.0.0.1 PowerShellGet
Function Find-Module 1.0.0.1 PowerShellGet
Function Find-RoleCapability 1.0.0.1 PowerShellGet
Function Find-Script 1.0.0.1 PowerShellGet
Function Get-InstalledModule 1.0.0.1 PowerShellGet
Function Get-InstalledScript 1.0.0.1 PowerShellGet
Function Get-PSRepository 1.0.0.1 PowerShellGet
Function Install-Module 1.0.0.1 PowerShellGet
Function Install-Script 1.0.0.1 PowerShellGet
Function New-ScriptFileInfo 1.0.0.1 PowerShellGet
Function Publish-Module 1.0.0.1 PowerShellGet
Function Publish-Script 1.0.0.1 PowerShellGet
Function Register-PSRepository 1.0.0.1 PowerShellGet
Function