共用方式為


Get-InstalledModule

取得 PowerShellGet 所安裝電腦上的模組清單。

語法

Get-InstalledModule
   [[-Name] <String[]>]
   [-MinimumVersion <String>]
   [-RequiredVersion <String>]
   [-MaximumVersion <String>]
   [-AllVersions]
   [-AllowPrerelease]
   [<CommonParameters>]

Description

Get-InstalledModule Cmdlet 會取得使用 PowerShellGet 安裝在電腦上的 PowerShell 模組。 若要查看系統上已安裝的所有模組,請使用 Get-Module -ListAvailable 命令。

範例

範例 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

在標示為發行前版本的結果模組中包含 。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-AllVersions

表示您想要取得模組的所有可用版本。 您無法將 AllVersions 參數與 MinimumVersionMaximumVersionRequiredVersion 參數搭配使用。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-MaximumVersion

指定要取得之模組的最大值或最新版本。 MaximumVersionRequiredVersion 參數互斥;您無法在同一個命令中使用這兩個參數。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-MinimumVersion

指定要取得的單一模組最低版本。 MinimumVersionRequiredVersion 參數互斥;您無法在同一個命令中使用這兩個參數。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Name

指定要取得之模組名稱的陣列。

類型:String[]
Position:0
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-RequiredVersion

指定要取得之模組的確切版本。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

輸入

String[]

String

輸出

PSCustomObject