Get-PSRepository
取得 PowerShell 存放庫。
Syntax
Get-PSRepository
[[-Name] <String[]>]
[<CommonParameters>]
Description
Cmdlet Get-PSRepository
會取得目前使用者註冊的 PowerShell 模組存放庫。
這是Microsoft.PowerShell.PSResourceGet中 Cmdlet 的 Proxy Cmdlet Get-PSResourceRepository
。 如需詳細資訊,請參閱 Get-PSResourceRepository。
範例
範例 1:取得所有模組存放庫
Get-PSRepository
此命令會取得針對目前使用者註冊的所有模組存放庫。
範例 2:依名稱取得模組存放庫
Get-PSRepository -Name "*NuGet*"
此命令會取得名稱中包含 NuGet 的所有模組存放庫。
範例 3:取得模組存放庫並格式化輸出
Get-PSRepository -Name "Local01" | Format-List * -Force
Name : local01
SourceLocation : http://manikb-dev:8765/api/v2/
Trusted : True
Registered : True
InstallationPolicy : Trusted
PackageManagementProvider : NuGet
PublishLocation : http://pattif-dev:8765/api/v2/package/
ScriptSourceLocation : http://pattif-dev:8765/api/v2/artifacts/psscript
ScriptPublishLocation : http://pattif-dev:8765/api/v2/package/
ProviderOptions : {}
此命令會取得名為 Local01 的存放庫,並使用管線運算子將該物件傳遞至 Format-List Cmdlet。
參數
-Name
指定要取得的存放庫名稱。
Type: | String[] |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
輸入
String[]