2018-03-29 17:03:56 +01:00
|
|
|
# choco source
|
|
|
|
|
|
|
|
> Manage sources for packages with Chocolatey.
|
2019-03-18 11:30:27 +00:00
|
|
|
> Homepage: <https://chocolatey.org/docs/commands-source>.
|
2018-03-29 17:03:56 +01:00
|
|
|
|
|
|
|
- List currently available sources:
|
|
|
|
|
|
|
|
`choco source list`
|
|
|
|
|
|
|
|
- Add a new package source:
|
|
|
|
|
|
|
|
`choco source add --name {{name}} --source {{url}}`
|
|
|
|
|
|
|
|
- Add a new package source with credentials:
|
|
|
|
|
|
|
|
`choco source add --name {{name}} --source {{url}} --user {{username}} --password {{password}}`
|
|
|
|
|
|
|
|
- Add a new package source with a client certificate:
|
|
|
|
|
|
|
|
`choco source add --name {{name}} --source {{url}} --cert {{path/to/certificate}}`
|
|
|
|
|
|
|
|
- Enable a package source:
|
|
|
|
|
|
|
|
`choco source enable --name {{name}}`
|
|
|
|
|
|
|
|
- Disable a package source:
|
|
|
|
|
|
|
|
`choco source disable --name {{name}}`
|
|
|
|
|
|
|
|
- Remove a package source:
|
|
|
|
|
|
|
|
`choco source remove --name {{name}}`
|