Get-PSResourceRepository

Trova e restituisce le informazioni del repository registrate.

Sintassi

Get-PSResourceRepository
   [[-Name] <String[]>]
   [<CommonParameters>]

Descrizione

Questo cmdlet cerca i repository di risorse di PowerShell registrati nel computer. Per impostazione predefinita, restituisce tutti i repository registrati.

Esempio

Esempio 1

In questo esempio vengono restituiti tutti i repository registrati nel computer.

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

Esempio 2

In questo esempio viene usato il parametro Name per ottenere un repository specifico.

Get-PSResourceRepository -Name PSGallery

Name         Uri                                        Trusted   Priority
----         ---                                        -------   --------
PSGallery    https://www.powershellgallery.com/api/v2     False         50

Esempio 3

In questo esempio viene usato il parametro Name per ottenere tutti i repository che terminano con 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

Esempio 4

In questo esempio viene usato il parametro Name per ottenere un elenco di respositorie denominate.

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

Parametri

-Name

Nome del repository da cercare. Sono supportati caratteri jolly. Il completamento della scheda per questo parametro viene eseguito tramite i nomi dei repository registrati.

Tipo:String[]
Posizione:0
Valore predefinito:None
Necessario:False
Accettare l'input della pipeline:True
Accettare caratteri jolly:True

Input

String[]

Output

Microsoft.PowerShell.PSResourceGet.UtilClasses.PSRepositoryInfo