forked from chocolatey/choco-quickstart-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClientSetup.ps1
315 lines (259 loc) · 11.3 KB
/
ClientSetup.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<#
.SYNOPSIS
Completes client setup for a client machine to communicate with the C4B Server.
#>
[CmdletBinding(DefaultParameterSetName = 'Default')]
param(
# The URL of the the internal Nexus repository to install Chocolatey from.
# This URL will be used to create the internal package source configuration.
[Parameter()]
[Alias('Url')]
[string]
$RepositoryUrl = 'https://{{hostname}}:8443/repository/ChocolateyInternal/index.json',
# The credential necessary to access the internal Nexus repository. This can
# be ignored if Anonymous authentication is enabled.
# This parameter will be necessary if your C4B server is web-enabled.
[Parameter(Mandatory)]
[pscredential]
$RepositoryCredential,
# Specifies a target version of Chocolatey to install. By default, the
# latest stable version is installed.
[Parameter()]
[string]
$ChocolateyVersion = $env:chocolateyVersion,
# Specifies whether to ignore any configured proxy. This will override any
# specified proxy environment variables.
[Parameter()]
[switch]
$IgnoreProxy = [bool]$env:chocolateyIgnoreProxy,
# The URL of a proxy server to use for connecting to the repository.
[Parameter(Mandatory = $true, ParameterSetName = 'Proxy')]
$ProxyUrl = $env:chocolateyProxyLocation,
# The credentials, if required, to connect to the proxy server.
[Parameter(ParameterSetName = 'Proxy')]
[pscredential]
$ProxyCredential,
# Client salt value used to populate the centralManagementClientCommunicationSaltAdditivePassword
# value in the Chocolatey config file
[Parameter()]
[string]
$ClientCommunicationSalt,
# Server salt value used to populate the centralManagementServiceCommunicationSaltAdditivePassword
# value in the Chocolatey config file
[Parameter()]
[string]
$ServiceCommunicationSalt,
#Install the Chocolatey Licensed Extension with right-click context menus available
[Parameter()]
[Switch]
$IncludePackageTools,
# Allows for the application of user-defined configuration that is applied after the base configuration.
# Can override base configuration with this parameter
[Parameter()]
[Hashtable]
$AdditionalConfiguration,
# Allows for the toggling of additonal features that is applied after the base configuration.
# Can override base configuration with this parameter
[Parameter()]
[Hashtable]
$AdditionalFeatures,
# Allows for the installation of additional packages after the system base packages have been installed.
[Parameter()]
[Hashtable[]]
$AdditionalPackages,
# Allows for the addition of alternative sources after the base conifguration has been applied.
# Can override base configuration with this parameter
[Parameter()]
[Hashtable[]]
$AdditionalSources
)
Set-ExecutionPolicy Bypass -Scope Process -Force
$hostAddress = $RepositoryUrl.Split('/')[2]
$hostName = ($hostAddress -split ':')[0]
$params = @{
ChocolateyVersion = $ChocolateyVersion
IgnoreProxy = $IgnoreProxy
UseNativeUnzip = $true
}
if (-not $IgnoreProxy) {
if ($ProxyUrl) {
$proxy = [System.Net.WebProxy]::new($ProxyUrl, $true <#bypass on local#>)
$params.Add('ProxyUrl', $ProxyUrl)
}
if ($ProxyCredential) {
$params.Add('ProxyCredential', $ProxyCredential)
$proxy.Credentials = $ProxyCredential
}
}
$webClient = New-Object System.Net.WebClient
if ($RepositoryCredential) {
$webClient.Credentials = $RepositoryCredential.GetNetworkCredential()
}
# Find the latest version of Chocolatey, if a version was not specified
$NupkgUrl = if (-not $ChocolateyVersion) {
$QueryUrl = (($RepositoryUrl -replace '/index\.json$'), "v3/registration/Chocolatey/index.json") -join '/'
$Result = $webClient.DownloadString($QueryUrl) | ConvertFrom-Json
$Result.items.items[-1].packageContent
}
else {
# Otherwise, assume the URL
"$($RepositoryUrl -replace '/index\.json$')/v3/content/chocolatey/$($ChocolateyVersion)/chocolatey.$($ChocolateyVersion).nupkg"
}
# Download the NUPKG
$NupkgPath = Join-Path $env:TEMP "$(New-Guid).zip"
$webClient.DownloadFile($NupkgUrl, $NupkgPath)
# Add Parameter for ChocolateyDownloadUrl, that is the NUPKG path
$params.Add('ChocolateyDownloadUrl', $NupkgPath)
# Get the script content
$script = $webClient.DownloadString("https://${hostAddress}/repository/choco-install/ChocolateyInstall.ps1")
# Run the Chocolatey Install script with the parameters provided
& ([scriptblock]::Create($script)) @params
# If FIPS is enabled, configure Chocolatey to use FIPS compliant checksums
$fipsStatus = Get-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" -Name Enabled
if ($fipsStatus.Enabled -eq 1) {
Write-Warning -Message "FIPS is enabled on this system. Ensuring Chocolatey uses FIPS compliant checksums"
choco feature enable --name='useFipsCompliantChecksums'
}
choco config set cacheLocation $env:ChocolateyInstall\choco-cache
choco config set commandExecutionTimeoutSeconds 14400
# Nexus NuGet V3 Compatibility
choco feature disable --name="'usePackageRepositoryOptimizations'"
# Environment base Source configuration
choco source add --name="'ChocolateyInternal'" --source="'$RepositoryUrl'" --allow-self-service --user="'$($RepositoryCredential.UserName)'" --password="'$($RepositoryCredential.GetNetworkCredential().Password)'" --priority=1
choco source disable --name="'Chocolatey'"
choco source disable --name="'chocolatey.licensed'"
choco upgrade chocolatey-license -y --source="'ChocolateyInternal'"
if (-not $IncludePackageTools) {
choco upgrade chocolatey.extension -y --params="'/NoContextMenu'" --source="'ChocolateyInternal'" --no-progress
}
else {
Write-Warning "IncludePackageTools was passed. Right-Click context menus will be available for installers, .nupkg, and .nuspec file types!"
choco upgrade chocolatey.extension -y --source="'ChocolateyInternal'" --no-progress
}
choco upgrade chocolateygui -y --source="'ChocolateyInternal'" --no-progress
choco upgrade chocolateygui.extension -y --source="'ChocolateyInternal'" --no-progress
choco upgrade chocolatey-agent -y --source="'ChocolateyInternal'"
# Chocolatey Package Upgrade Resilience
choco feature enable --name="'excludeChocolateyPackagesDuringUpgradeAll'"
# Self-Service configuration
choco feature disable --name="'showNonElevatedWarnings'"
choco feature enable --name="'useBackgroundService'"
choco feature enable --name="'useBackgroundServiceWithNonAdministratorsOnly'"
choco feature enable --name="'allowBackgroundServiceUninstallsFromUserInstallsOnly'"
choco config set --name="'backgroundServiceAllowedCommands'" --value="'install,upgrade,uninstall'"
# Enable Package Hash Validation (Good security practice)
choco feature enable --name="'usePackageHashValidation'"
# CCM Check-in Configuration
choco config set CentralManagementServiceUrl "https://${hostName}:24020/ChocolateyManagementService"
if ($ClientCommunicationSalt) {
choco config set centralManagementClientCommunicationSaltAdditivePassword $ClientCommunicationSalt
}
if ($ServiceCommunicationSalt) {
choco config set centralManagementServiceCommunicationSaltAdditivePassword $ServiceCommunicationSalt
}
choco feature enable --name="'useChocolateyCentralManagement'"
choco feature enable --name="'useChocolateyCentralManagementDeployments'"
if ($AdditionalConfiguration -or $AdditionalFeatures -or $AdditionalSources -or $AdditionalPackages) {
Write-Host "Applying user supplied configuration" -ForegroundColor Cyan
}
# How we call choco from here changes as we need to be more dynamic with thingsii .
if ($AdditionalConfiguration) {
<#
We expect to pass in a hashtable with configuration information with the following shape:
@{
Name = BackgroundServiceAllowedCommands
Value = 'install,upgrade,uninstall'
}
#>
$AdditionalConfiguration.GetEnumerator() | ForEach-Object {
$Config = [System.Collections.Generic.list[string]]::new()
$Config.Add('config')
$Config.Add('set')
$Config.Add("--name='$($_.Key)'")
$Config.Add("--value='$($_.Value)'")
& choco @Config
}
}
if ($AdditionalFeatures) {
<#
We expect to pass in feature information as a hashtable with the following shape:
@{
useBackgroundservice = 'Enabled'
}
#>
$AdditionalFeatures.GetEnumerator() | ForEach-Object {
$Feature = [System.Collections.Generic.list[string]]::new()
$Feature.Add('feature')
$state = switch ($_.Value) {
'Enabled' { 'enable' }
'Disabled' { 'disable' }
default { Write-Error 'State must be either Enabled or Disabled' }
}
$Feature.Add($state)
$Feature.add("--name='$($_.Key)'")
& choco @Feature
}
}
if ($AdditionalSources) {
<#
We expect a user to pass in a hashtable with source information with the folllowing shape:
@{
Name = 'MySource'
Source = 'https://nexus.fabrikam.com/repository/MyChocolateySource'
#Optional items
Credentials = $MySourceCredential
AllowSelfService = $true
AdminOnly = $true
BypassProxy = $true
Priority = 10
Certificate = 'C:\cert.pfx'
CertificatePassword = 's0mepa$$'
}
#>
Foreach ($Source in $AdditionalSources) {
$SourceSplat = [System.Collections.Generic.List[string]]::new()
# Required items
$SourceSplat.Add('source')
$SourceSplat.Add('add')
$SourceSplat.Add("--name='$($Source.Name)'")
$SourceSplat.Add("--source='$($Source.Source)'")
# Add credentials if source has them
if ($Source.ContainsKey('Credentials')) {
$SourceSplat.Add("--user='$($Source.Credentials.Username)'")
$SourceSplat.Add("--password='$($Source.Credentials.GetNetworkCredential().Password)'")
}
switch ($true) {
$Source['AllowSelfService'] { $SourceSplat.add('--allow-self-service') }
$Source['AdminOnly'] { $SourceSplat.Add('--admin-only') }
$Source['BypassProxy'] { $SourceSplat.Add('--bypass-proxy') }
$Source.ContainsKey('Priority') { $SourceSplat.Add("--priority='$($Source.Priority)'") }
$Source.ContainsKey('Certificate') { $SourceSplat.Add("--cert='$($Source.Certificate)'") }
$Source.ContainsKey('CerfificatePassword') { $SourceSplat.Add("--certpassword='$($Source.CertificatePassword)'") }
}
}
& choco @SourceSplat
}
if ($AdditionalPackages) {
<#
We expect to pass in a hashtable with package information with the following shape:
@{
Id = 'firefox'
#Optional
Version = 123.4.56
Pin = $true
}
#>
foreach ($package in $AdditionalPackages.GetEnumerator()) {
$PackageSplat = [System.Collections.Generic.list[string]]::new()
$PackageSplat.add('install')
$PackageSplat.add($package['Id'])
switch ($true) {
$package.ContainsKey('Version') { $PackageSplat.Add("--version='$($package.version)'") }
$package.ContainsKey('Pin') { $PackageSplat.Add('--pin') }
}
# Ensure packages install and they don't flood the console output
$PackageSplat.Add('-y')
$PackageSplat.Add('--no-progress')
& choco @PackageSplat
}
}