Get-InstalledModule
获取由 PowerShellGet 安装的计算机上的模块列表。
语法
Get-InstalledModule
[[-Name] <String[]>]
[-MinimumVersion <String>]
[-RequiredVersion <String>]
[-MaximumVersion <String>]
[-AllVersions]
[-AllowPrerelease]
[<CommonParameters>]
说明
cmdlet Get-InstalledModule
获取使用 PowerShellGet 安装在计算机上的 PowerShell 模块。 若要查看系统上安装的所有模块,请使用 Get-Module -ListAvailable
命令。
这是 Microsoft.PowerShell.PSResourceGet 中 cmdlet 的代理 Get-InstalledPSResource
cmdlet。 有关详细信息,请参阅 Get-InstalledPSResource。
示例
示例 1:获取所有已安装的模块
Get-InstalledModule
Version Name Type Repository Description
------- ---- ---- ---------- -----------
2.0.0 PSGTEST-UploadMultipleVersionOfP... Module GalleryINT Module for DAC functionality
1.3.5 AzureAutomationDebug Module PSGallery Module for debugging Azure Automation runbooks, emulating AA native cmdlets
1.0.1 AzureRM.Automation Module PSGallery Microsoft Azure PowerShell - Automation service cmdlets for Azure Resource Manager
此命令获取所有已安装的模块。
示例 2:获取特定版本的模块
Get-InstalledModule -Name "AzureRM.Automation" -MinimumVersion 1.0 -MaximumVersion 2.0
Version Name Type Repository Description
------- ---- ---- ---------- -----------
1.0.1 AzureRM.Automation Module PSGallery Microsoft Azure PowerShell - Automation service cmdlets for Azure Resource Manager
此命令从版本 1.0 到版本 2.0 获取 AzureRM.Automation 模块的版本。
参数
-AllowPrerelease
在标记为预发行版的结果模块中包含 。
代理 cmdlet 将此参数映射到 的 Get-InstalledPSResource
Prerelease 参数。
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllVersions
代理 cmdlet 在调用 Get-InstalledPSResource
之前将-Version *
此参数转换为 。
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MaximumVersion
代理 cmdlet 使用此参数的值来创建 NuGet 版本搜索字符串,以便与 的Get-InstalledPSResource
Version 参数一起使用。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-MinimumVersion
代理 cmdlet 使用此参数的值来创建 NuGet 版本搜索字符串,以便与 的Get-InstalledPSResource
Version 参数一起使用。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Name
指定要获取的模块的名称数组。
Type: | String[] |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-RequiredVersion
代理 cmdlet 使用此参数的值来创建 NuGet 版本搜索字符串,以便与 的Get-InstalledPSResource
Version 参数一起使用。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
输入
String[]