Difference between revisions of "Chocolatey"

From UVOO Tech Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
# Install
 +
 +
```
 +
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
 +
```
 +
 +
```
 +
choco install vim
 +
```
 +
 +
# more
 +
 
"Chocolatey on Windows" https://www.codemag.com/article/1901051/Chocolatey-on-Windows
 
"Chocolatey on Windows" https://www.codemag.com/article/1901051/Chocolatey-on-Windows
  
Line 9: Line 21:
  
 
https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-2b-set-up-a-different-repository
 
https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-2b-set-up-a-different-repository
 +
 +
 +
- https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-2a-set-up-chocolatey.server
 +
- Finish Exercise 0/1 on a machine you will set up as a server.
 +
- Follow the steps https://docs.chocolatey.org/en-us/guides/organizations/set-up-chocolatey-server#setup-normally
 +
- Follow the steps https://docs.chocolatey.org/en-us/guides/organizations/set-up-chocolatey-server#additional-configuration
 +
- Open a web browser and navigate to http://localhost. Read over the site and take notes.
 +
- Change the API key in the web.config file following the instructions at http://localhost. If localhost doesn't resolve to the site, make sure the bindings include "All Unassigned". This could be a temporary change if you need it to be, but it's important to access this to see additional setup instructions.

Latest revision as of 16:54, 12 November 2023

Install

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
choco install vim

more

"Chocolatey on Windows" https://www.codemag.com/article/1901051/Chocolatey-on-Windows

https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide

https://docs.chocolatey.org/en-us/community-repository/community-packages-disclaimer

https://chocolatey.org/contact/

https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-2b-set-up-a-different-repository