You are running a Simple Chocolatey Package Repository v0.3.0.0

chocolatey logo

View your packages (Atom-based feed, will show up differently in different browsers. Some will show it as raw XML, while others will understand the contents and render it in a nicely formatted structure. Depending on your browser, there may be extensions that can help with the rendering of the content).

To interact with this repository, you will be using Chocolatey from client machines.

Information

Querying / Installing Packages

Add the following URL to the list of Chocolatey sources:

https://chocolatey.barstow.edu/chocolatey
Example: choco source add --name=internal_machine --source=https://chocolatey.barstow.edu/chocolatey
For more examples and switches, please see the source command.
To add authentication, please see additional instructions ("Administrator Information" section) when you connect to this repo from localhost.

Adding/Pushing Packages

To add the package push API key to the client machines you use for packaging, use the following:
choco apikey --source="https://chocolatey.barstow.edu/chocolatey" --api-key={apikey}
Use the command below to push packages to this repository:
choco push [{package file}] --source https://chocolatey.barstow.edu/chocolatey [--api-key={apikey}]

Installing Chocolatey On Client Machines

PowerShell.exe - copy and paste the following into the shell and press enter:

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.barstow.edu/install.ps1'))

Cmd.exe - copy and paste the following into cmd.exe and press enter:

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.barstow.edu/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

Integrations: When using Infrastructure Management Tools, ensure you've put a chocolatey.nupkg on this repository.

Based on NuGet.Server v3.0.2