You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-14
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This repository contains a set of supporting scripts used for the Chocolatey for Business (C4B) Quick-Start Guide (QSG).
4
4
5
-
These scripts can be used to assist in setup of a brandnew 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.
6
6
7
7
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).
8
8
@@ -34,14 +34,14 @@ As illustrated in the diagram above, there are four main components to a Chocola
34
34
35
35
1.**C4B Licensed components**: A licensed version of Chocolatey includes:
36
36
- 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`)
38
38
- 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/)).
39
39
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).
41
41
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 checkin 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.
43
43
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.
45
45
46
46
## Requirements
47
47
@@ -62,7 +62,7 @@ Below are the minimum requirements for setting up your C4B server via this guide
62
62
63
63
1. Install all Windows Updates.
64
64
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.
66
66
67
67
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.
68
68
@@ -120,9 +120,11 @@ Below are the minimum requirements for setting up your C4B server via this guide
> <li>Cleans up all demo repositories on Nexus</li>
123
+
> <li>Creates a "ChocolateyCore" NuGet repository</li>
123
124
> <li>Creates a "ChocolateyInternal" NuGet repository</li>
124
125
> <li>Creates a "ChocolateyTest" NuGet repository</li>
125
126
> <li>Creates a "choco-install" raw repository</li>
127
+
> <li>Sets up "ChocolateyCore" on C4B Server as source, with API key</li>
126
128
> <li>Sets up "ChocolateyInternal" on C4B Server as source, with API key</li>
127
129
> <li>Adds firewall rule for repository access</li>
128
130
> <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
177
179
.\Set-SslSecurity.ps1
178
180
```
179
181
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:
181
183
182
184
```powershell
183
185
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
189
191
> :memo: **NOTE**
190
192
> 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.
191
193
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:
193
195
194
196
```powershell
195
197
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
272
274
Congratulations! If you followed all the steps detailed above, you should now have a fully functioning Chocolatey for Business implementation deployed in your environment.
273
275
274
276
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:
0 commit comments