Skip to content

Commit 15ddbb0

Browse files
committed
(doc) Update README
Add callout to new ChocolateyCore repository Remove See It In Action section as video is outdated Fixup spelling/grammer
1 parent 5c62ccc commit 15ddbb0

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

README.md

+10-14
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This repository contains a set of supporting scripts used for the Chocolatey for Business (C4B) Quick-Start Guide (QSG).
44

5-
These scripts can be used to assist in setup of a brand new Windows Server as a C4B Server.
5+
These scripts can be used to assist in the setup of a brand-new Windows Server as a C4B Server.
66

77
Below is the Quick Start Guide as it exists currently on the [Chocolatey Docs](https://docs.chocolatey.org/en-us/guides/organizations/quick-start-guide/chocolatey-for-business-quick-start-guide).
88

@@ -34,14 +34,14 @@ As illustrated in the diagram above, there are four main components to a Chocola
3434

3535
1. **C4B Licensed components**: A licensed version of Chocolatey includes:
3636
- Installation of the Chocolatey OSS client package itself (`chocolatey`)
37-
- Chocolatey license file (`chocolatey.license.xml`) installed in the correct directory (`ProgramData\chocolatey\license`)
37+
- The Chocolatey license file (`chocolatey.license.xml`) is installed in the correct directory (`ProgramData\chocolatey\license`)
3838
- Installation of the Chocolatey Licensed extension (`chocolatey.extension`), giving you access to features like Package Builder, Package Internalizer, etc. (full list [here](https://docs.chocolatey.org/en-us/features/)).
3939

40-
1. **NuGet V3 Repository Server App (Nexus)**: Chocolatey works best with a NuGet V3 repository. This application hosts and manages versioning of your Chocolatey package artifacts, in their enhanced NuGet package (.nupkg) file format. The quick start guide helps you setup [Sonatype Nexus Repository Manager (OSS)](https://www.sonatype.com/products/nexus-repository).
40+
1. **NuGet V3 Repository Server App (Nexus)**: Chocolatey works best with a NuGet V3 repository. This application hosts and manages the versioning of your Chocolatey package artifacts, in their enhanced NuGet package (.nupkg) file format. The quick start guide helps you set up [Sonatype Nexus Repository Manager (OSS)](https://www.sonatype.com/products/nexus-repository).
4141

42-
1. **Chocolatey Central Management (CCM)**: CCM is the Web UI portal for your entire Chocolatey environment. Your endpoints check-in to CCM to report their package status. This includes the Chocolatey packages they have installed, and whether any of these packages are outdated. And now, with CCM Deployments, you can also deploy packages or package updates to groups of endpoints, as well as ad-hoc PowerShell commands. CCM is backed by an MS SQL Database. This guide will set up MS SQL Express for you.
42+
1. **Chocolatey Central Management (CCM)**: CCM is the Web UI portal for your entire Chocolatey environment. Your endpoints check in to CCM to report their package status. This includes the Chocolatey packages they have installed, and whether any of these packages are outdated. And now, with CCM Deployments, you can also deploy packages or package updates to groups of endpoints, as well as ad-hoc PowerShell commands. CCM is backed by an MS SQL Database. This guide will set up MS SQL Express for you.
4343

44-
1. **Automation Pipeline (Jenkins)**: A pipeline tool will help you automate repetitive tasks, such checking for updates to a set of Chocolatey Packages from the Chocolatey Community Repository (CCR). If updates exist, the pipeline task will auto-internalize your list of packages, and push them into your NuGet repository for you. This guide will help you set up Jenkins as your automation pipeline.
44+
1. **Automation Pipeline (Jenkins)**: A pipeline tool will help you automate repetitive tasks, such as checking for updates to a set of Chocolatey Packages from the Chocolatey Community Repository (CCR). If updates exist, the pipeline task will auto-internalize your list of packages, and push them into your NuGet repository for you. This guide will help you set up Jenkins as your automation pipeline.
4545

4646
## Requirements
4747

@@ -62,7 +62,7 @@ Below are the minimum requirements for setting up your C4B server via this guide
6262

6363
1. Install all Windows Updates.
6464

65-
1. If you plan on joining this server to your Active Directory domain, do so now before beginning setup below.
65+
1. If you plan on joining this server to your Active Directory domain, do so now before beginning the setup below.
6666

6767
1. If you plan to use a Purchased/Acquired or Domain SSL certificate, please ensure the CN/Subject value matches the DNS-resolvable Fully Qualified Domain Name (FQDN) of your C4B Server. Place this certificate in the `Local Machine > Personal` certificate store, and ensure that the private key is exportable.
6868

@@ -120,9 +120,11 @@ Below are the minimum requirements for setting up your C4B server via this guide
120120
> <ul class="list-style-type-disc">
121121
> <li>Installs Sonatype Nexus Repository Manager OSS instance</li>
122122
> <li>Cleans up all demo repositories on Nexus</li>
123+
> <li>Creates a "ChocolateyCore" NuGet repository</li>
123124
> <li>Creates a "ChocolateyInternal" NuGet repository</li>
124125
> <li>Creates a "ChocolateyTest" NuGet repository</li>
125126
> <li>Creates a "choco-install" raw repository</li>
127+
> <li>Sets up "ChocolateyCore" on C4B Server as source, with API key</li>
126128
> <li>Sets up "ChocolateyInternal" on C4B Server as source, with API key</li>
127129
> <li>Adds firewall rule for repository access</li>
128130
> <li>Installs MS Edge, and disables first-run experience</li>
@@ -177,7 +179,7 @@ Below are the minimum requirements for setting up your C4B server via this guide
177179
.\Set-SslSecurity.ps1
178180
```
179181
180-
**ALTERNATIVE 1 : Custom SSL Certificate** - If you have your own custom SSL certificate (purchased/acquired, or from your Domain CA), you can paste and run the following script with the `Thumbprint` value of your SSL certificate specified:
182+
**ALTERNATIVE 1: Custom SSL Certificate** - If you have your own custom SSL certificate (purchased/acquired, or from your Domain CA), you can paste and run the following script with the `Thumbprint` value of your SSL certificate specified:
181183
182184
```powershell
183185
Set-Location "$env:SystemDrive\choco-setup\files"
@@ -189,7 +191,7 @@ Below are the minimum requirements for setting up your C4B server via this guide
189191
> :memo: **NOTE**
190192
> You may have noticed the `-Hardened` parameter we've added above. When using a custom SSL certificate, this parameter will further secure access to your C4B Server. A Role and User credential will be configured to limit access to your Nexus repositories. As well, CCM Client and Service Salts are configured to further encrypt your connection between CCM and your endpoint clients. These additional settings are also incorporated into your `Register-C4bEndpoint.ps1` script for onboarding endpoints. We do require you to enable this option if your C4B Server will be Internet-facing, with a FQDN that resolves to a public IP.
191193
192-
**ALTERNATIVE 2 : Wildcard SSL Certificate** - If you have a wildcard certificate, you will also need to provide a DNS name you wish to use for that certificate:
194+
**ALTERNATIVE 2: Wildcard SSL Certificate** - If you have a wildcard certificate, you will also need to provide a DNS name you wish to use for that certificate:
193195
194196
```powershell
195197
Set-Location "$env:SystemDrive\choco-setup\files"
@@ -272,9 +274,3 @@ Below are the minimum requirements for setting up your C4B server via this guide
272274
Congratulations! If you followed all the steps detailed above, you should now have a fully functioning Chocolatey for Business implementation deployed in your environment.
273275
274276
It is worth mentioning that some customers may have a more bespoke environment, with the presence of proxies and additional configuration management applications. Chocolatey is engineered to be quite flexible, specifically to account for these scenarios. Please refer to the many options for installation referenced on the [Installation page](https://docs.chocolatey.org/en-us/licensed-extension/setup#more-install-options). Again, If you have any questions or would like to discuss more involved implementations, please feel free to reach out to your Chocolatey representative.
275-
276-
### See it in Action
277-
278-
If you'd prefer to watch and follow along, here is a recording of our Chocolatey Team going through this guide live on our Twitch stream:
279-
280-
[YouTube Video](https://www.youtube.com/embed/qbIclPMEgig)

0 commit comments

Comments
 (0)