Get-PSRepository
取得 PowerShell 存放庫。
語法
Get-PSRepository
[[-Name] <String[]>]
[<CommonParameters>]
Description
Get-PSRepository
Cmdlet 會取得為目前用戶註冊的 PowerShell 模組存放庫。
範例
範例 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
指定要取得的存放庫名稱。
類型: | String[] |
Position: | 0 |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
輸入
String[]