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: src/content/docs/en-us/c4b-environments/quick-start-environment/advanced-client-configuration.mdx
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ While this opinionated approach is fine for most situations, flexibility is requ
16
16
17
17
These credentials are found in the README file placed on the Desktop of the server during installation, or wherever you documented them if you changed them after installation.
18
18
</Callout>
19
+
19
20
## Include Packaging Tools with installation
20
21
21
22
Some members of your team may be responsible for maintaining Chocolatey packages in your organization. These tools can be included in the installation by providing the `-IncludePackageTools` parameter.
Some machines within your organization might not require the installation of the self-service Chocolatey GUI application. Examples of these types of machines may include Windows servers with no GUI interface, or digital signage/kiosk thin clients. You can skip installation of the Chocolatey GUI application by providing the `-SkipChocolateyGUI` parameter.
## Enable/Disable additional features with installation
29
39
30
40
Some endpoints may require a different set of features. The default installation will apply our _recommended_ configuration.
31
41
However, you can override these defaults or enable/disable additional features by providing the `-AdditionalFeatures` parameter.
32
42
33
-
In this example we will disable the use of the background service so non-admin users cannot use Chocolatey (not recommended), and enable Gloabl Confirmation so you no longer need to pass -y when performing a package operation.
43
+
In this example we will disable the use of the background service so non-admin users cannot use Chocolatey (not recommended), and enable Global Confirmation so you no longer need to pass -y when performing a package operation.
#### Install a specific version of the notepadplusplus.install package
123
+
### Install a specific version of the notepadplusplus.install package
124
+
112
125
The following example installs version 8.7.5 of the notepadplusplus.install package.
113
126
114
127
```powershell
115
128
Set-Location /path/to/register-c4bendpoint.ps1
116
129
. .\Register-C4bEndpoint.ps1 -RepositoryCredential (Get-Credential) -AdditionalPackages @{Id ='notepadplusplus.install'; Version = '8.7.5'}
117
130
```
118
131
119
-
#### Install a specific version of the notepadplusplus.install package, and pin it so it does not upgrade automaticallyThe following example installs version 8.7.5 of the notepadplusplus.install package and pins it so that it is not upgraded when using `choco upgrade`
132
+
### Install a specific version of the notepadplusplus.install package, and pin it so it does not upgrade automatically
133
+
134
+
The following example installs version 8.7.5 of the notepadplusplus.install package and pins it so that it is not upgraded when using `choco upgrade`.
135
+
120
136
To upgrade this package, you will need to first unpin it, and then perform the upgrade.
0 commit comments