winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Get-WinGetSource.md (1627B)


      1 ---
      2 external help file: Microsoft.WinGet.Client.Cmdlets.dll-Help.xml
      3 Module Name: Microsoft.WinGet.Client
      4 ms.date: 08/01/2024
      5 online version:
      6 schema: 2.0.0
      7 title: Get-WinGetSource
      8 ---
      9 
     10 # Get-WinGetSource
     11 
     12 ## SYNOPSIS
     13 Lists configured WinGet sources.
     14 
     15 ## SYNTAX
     16 
     17 ```
     18 Get-WinGetSource [[-Name] <String>] [<CommonParameters>]
     19 ```
     20 
     21 ## DESCRIPTION
     22 
     23 Lists the configured WinGet sources.
     24 
     25 ## EXAMPLES
     26 
     27 ### Example 1: List all configured WinGet sources
     28 
     29 ```powershell
     30 Get-WinGetSource
     31 ```
     32 
     33 ```Output
     34 Name    Argument                                      Type
     35 ----    --------                                      ----
     36 msstore https://storeedgefd.dsx.mp.microsoft.com/v9.0 Microsoft.Rest
     37 winget  https://cdn.winget.microsoft.com/cache        Microsoft.PreIndexed.Package
     38 ```
     39 
     40 ## PARAMETERS
     41 
     42 ### -Name
     43 
     44 Specify the name of the WinGet source to be displayed.
     45 
     46 ```yaml
     47 Type: System.String
     48 Parameter Sets: (All)
     49 Aliases:
     50 
     51 Required: False
     52 Position: 0
     53 Default value: None
     54 Accept pipeline input: True (ByPropertyName, ByValue)
     55 Accept wildcard characters: False
     56 ```
     57 
     58 ### CommonParameters
     59 
     60 This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
     61 -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable,
     62 -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
     63 [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
     64 
     65 ## INPUTS
     66 
     67 ### System.String
     68 
     69 ## OUTPUTS
     70 
     71 ### Microsoft.WinGet.Client.Engine.PSObjects.PSSourceResult
     72 
     73 ## NOTES
     74 
     75 ## RELATED LINKS
     76 
     77 [Add-WinGetSource](Add-WinGetSource.md)
     78 
     79 [Remove-WinGetSource](Remove-WinGetSource.md)