Get-PSResourceRepository
登録済みのリポジトリ情報を検索して返します。
構文
Get-PSResourceRepository
[[-Name] <String[]>]
[<CommonParameters>]
説明
このコマンドレットは、マシンに登録されている PowerShell リソース リポジトリを検索します。 既定では、登録されているすべてのリポジトリが返されます。
例
例 1
次の使用例は、マシンに登録されているすべてのリポジトリを返します。
Get-PSResourceRepository
Name Uri Trusted Priority
---- --- ------- --------
PoshTestGallery https://www.poshtestgallery.com/api/v2 True 40
PSGallery https://www.powershellgallery.com/api/v2 False 50
psgettestlocal file:///c:/code/testdir True 50
例 2
この例では 、Name パラメーターを使用して特定のリポジトリを取得します。
Get-PSResourceRepository -Name PSGallery
Name Uri Trusted Priority
---- --- ------- --------
PSGallery https://www.powershellgallery.com/api/v2 False 50
例 3
この例では、 Name パラメーターを使用して、 で Gallery
終わるすべてのリポジトリを取得します。
Get-PSResourceRepository -Name "*Gallery"
Name Uri Trusted Priority
---- --- ------- --------
PoshTestGallery https://www.poshtestgallery.com/api/v2 True 40
PSGallery https://www.powershellgallery.com/api/v2 False 50
例 4
この例では、 Name パラメーターを使用して名前付き respositories の一覧を取得します。
Get-PSResourceRepository -Name "PSGallery","PoshTestGallery"
Name Uri Trusted Priority
---- --- ------- --------
PoshTestGallery https://www.poshtestgallery.com/api/v2 True 40
PSGallery https://www.powershellgallery.com/api/v2 False 50
パラメーター
-Name
検索するリポジトリの名前。 ワイルドカードを利用できます。 このパラメーターのタブ補完は、登録済みのリポジトリ名を順番に表示します。
型: | String[] |
配置: | 0 |
規定値: | None |
必須: | False |
パイプライン入力を受け取る: | True |
ワイルドカード文字を受け取る: | True |
入力
String[]
出力
Microsoft.PowerShell.PSResourceGet.UtilClasses.PSRepositoryInfo
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
PSResourceGet