更新记录
转载请注明出处。
2022年8月29日 发布。
2022年8月29日 从笔记迁移到博客。
Modules were introduced with the release of PowerShell version 2.0
Modules represented a significant step forward over snap-ins
Unlike snap-ins, modules do not have to be formally installed or registered for use with PowerShell
A module may be binary, script, dynamic, or manifest
Binary modules: These are written in a language such as C# or VB.NET, and then compiled into a dynamic-link library (DLL)
Script modules: These are a collection of functions written in the PowerShell language. The commands typically reside in a script module file (PSM1)
Dynamic modules: These are created using the New-Module command and exists in memory only. The following command creates a very simple dynamic module that adds the Get-Number command: New-Module -Name TestModule -ScriptBlock { function Get-Number { return 1 } }
Manifest modules: These combines different items to make a single consistent module. For example, a manifest may be used to create a single module out of a DLL containing cmdlets and a script containing functions, and Microsoft.PowerShell.Utility is a manifest module that combines a binary and script module
可扩展性是PowerShell的一个主要优势
Exchange Server、SharePoint Server、System Center等系列都支持使用PowerShell操作
本质就是PowerShell的扩展,可以使用提供程序扩展PowerShell
大部分的其他软件程序包都存在提供程序
比如Internet Information Service(IIS)、SQL Server,甚至是活动目录
可以通过模块或者管理单元将一些提供程序添加到PowerShell中
如果启用了某些PowerShell功能,可能也会新增一个PSProvider
Get-PSProvider
模块 和 管理单元
https://www.powershellgallery.com/
PowerShellGet http:// powershellgallery.com
PowerShellGet 模块需要 PowerShell 3.0 或更高版本
PowerShellGet随着PowerShell v5以及更新版本一起发行
如果你使用的是v5版本(检查$PSVersionTable),就拥有该模块
Find-Module
安装多个库之后可能会导致Cmdlet冲突
可以在Cmdlet前加上库名称即可
MyCoolPowerShellSnapin\Get-User
https://docs.microsoft.com/zh-cn/powershell/scripting/developer/help/writing-help-for-windows-powershell-cmdlets?view=powershell-6
提供程序将各种数据操作表现为文件系统的操作命令
PowerShell中的提供程序主要用于不同数据的访问
使用统一的标准访问不同的数据,有种LINQ的感觉
filesystem, registry, certificate store, and so on
获得Provider的帮助描述
Get-Help about_Providers
The PowerShell Gallery is a repository and distribution platform for scripts, modules, and Desired State Configuration (DSC) resources that have been written by Microsoft or other users of PowerShell
注意:Support for the gallery is included by default in PowerShell 5
网站:https://www.powershellgallery.com
Get-Module
显示已经加载的包
Get-Module -ListAvailable
模块加载位置:
Powershell从PSMDULEPATH环境变量中查找模块加载的位置
$env:PSMODULEPATH
使用分割符进行分割
$env:PSModulePath -split ';'
Import-Module
导入指定名称的模块(默认从$PSMODULEPATH加载)
Import-Module -Name PSWorkflow
导入模块跳过版本检查
Import-Module NetSecurity -SkipEditionCheck
导入指定文件内的模块
Import-Module -Name C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PSWorkflow\PSWorkflow.ps d1
注意:默认情况下,将模块安装到 $env:ProgramFiles\WindowsPowerShell\Modules
Remove-Module
Find-Module
实例:
搜索指定名称的包
Find-Module Carbon Find-Module -Name Carbon Find-Module -Name Azure*
搜索指定标签的包
Find-Module -Filter IIS
Install-Module
实例:
安装指定模块(限定在指定用户)
Install-Module carbon -Scope CurrentUser
强制安装指定模块
Install-Module carbon -Scope CurrentUser -Force
Update-Module
Save-Module
说明:下载模块,而不安装
Add-WindowsPSModulePath
Snap-ins are only available in Windows PowerShell,not present in PowerShell Core
管理单元(snap-ins)是模块(Module)的前身
Snap-ins must be installed or registered before they can be used
可以在注册表中查看已经注册的snap-ins
HKLM:\Software\Microsoft\PowerShell\1\PowerShellSnapIns
Get-PSSnapIn -Registered
注意:只在Windows PowerShell可用