Get-InstalledModule
PowerShellGet에서 설치한 컴퓨터의 모듈 목록을 가져옵니다.
Syntax
Get-InstalledModule
[[-Name] <String[]>]
[-MinimumVersion <String>]
[-RequiredVersion <String>]
[-MaximumVersion <String>]
[-AllVersions]
[-AllowPrerelease]
[<CommonParameters>]
Description
cmdlet은 Get-InstalledModule
PowerShellGet을 사용하여 컴퓨터에 설치된 PowerShell 모듈을 가져옵니다. 시스템에 설치된 모든 모듈을 보려면 명령을 사용합니다 Get-Module -ListAvailable
.
Microsoft.PowerShell.PSResourceGet의 Get-InstalledPSResource
cmdlet에 대한 프록시 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은 이 매개 변수를 의 Prerelease 매개 변수에 Get-InstalledPSResource
매핑합니다.
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은 이 매개 변수의 값을 사용하여 의 Version 매개 변수 Get-InstalledPSResource
와 함께 사용할 NuGet 버전 검색 문자열을 만듭니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-MinimumVersion
프록시 cmdlet은 이 매개 변수의 값을 사용하여 의 Version 매개 변수 Get-InstalledPSResource
와 함께 사용할 NuGet 버전 검색 문자열을 만듭니다.
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은 이 매개 변수의 값을 사용하여 의 Version 매개 변수 Get-InstalledPSResource
와 함께 사용할 NuGet 버전 검색 문자열을 만듭니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
입력
String[]
출력
PSResourceGet