This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 287
/
Copy pathChrome.psm1
500 lines (364 loc) · 15.4 KB
/
Chrome.psm1
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#requires -Version 3
Set-StrictMode -Version 3
Function Get-ChromeVersion() {
<#
.SYNOPSIS
Gets the latest Chrome version.
.DESCRIPTION
Gets the latest Chrome version for a specific release channel.
.PARAMETER Channel
The Chrome release channel. Defaults to 'stable'. Valid values are 'dev', 'canary', 'beta', 'stable'.
.PARAMETER UseHTTP
Use HTTP instead of HTTPS.
.EXAMPLE
Get-ChromeVersion
.EXAMPLE
Get-ChromeVersion -Channel 'dev'
.EXAMPLE
Get-ChromeVersion -UseHTTP
#>
[CmdletBinding()]
[OutputType([System.Version])]
Param(
[Parameter(Mandatory=$false, HelpMessage='The Chrome release channel')]
[ValidateSet('dev', 'canary', 'beta', 'stable', IgnoreCase = $true)]
[string]$Channel = 'stable',
[Parameter(Mandatory=$false, HelpMessage='Use HTTP instead of HTTPS')]
[switch]$UseHTTP
)
$protocol = 'https'
if($UseHTTP) {
$protocol = 'http'
}
$uri = ('{0}://omahaproxy.appspot.com/win?channel={1}' -f $protocol,$Channel.ToLower())
$params = @{
Uri = $uri;
Method = 'Get';
}
$proxyUri = [System.Net.WebRequest]::GetSystemWebProxy().GetProxy($uri)
$ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue
if(([string]$proxyUri) -ne $uri) {
$response = Invoke-WebRequest @params -Proxy $proxyUri -ProxyUseDefaultCredentials -UseBasicParsing
} else {
$response = Invoke-WebRequest @params -UseBasicParsing
}
$statusCode = $response.StatusCode
if ($statusCode -eq 200) {
$version = $response.Content
return [System.Version]$version
} else {
throw 'Request failed with status code $statusCode'
}
}
Function Get-ChromeExtension() {
<#
.SYNOPSIS
Gets a Chrome extension from the Chrome Web Store.
.DESCRIPTION
Gets a Chrome extension from the Chrome Web Store.
.PARAMETER ExtensionID
The Chrome extension ID.
.PARAMETER ExtensionTitle
The Chrome extension title.
.PARAMETER ExtensionVersion
The Chrome extension version.
.PARAMETER ChromeVersion
The Chrome browser version.
.PARAMETER Path
The folder path to save the extension to.
.PARAMETER UseHTTP
Use HTTP instead of HTTPS.
.EXAMPLE
Get-ChromeExtension -ExtensionID 'djflhoibgkdhkhhcedjiklpkjnoahfmg' -ExtensionTitle 'User-Agent Switcher for Chrome' -ExtensionVersion '1.0.43'
.EXAMPLE
Get-ChromeExtension -ExtensionID 'djflhoibgkdhkhhcedjiklpkjnoahfmg' -ExtensionTitle 'User-Agent Switcher for Chrome' -ExtensionVersion '1.0.43' -UseHTTP
.EXAMPLE
Get-ChromeExtension -ExtensionID 'djflhoibgkdhkhhcedjiklpkjnoahfmg' -ExtensionTitle 'User-Agent Switcher for Chrome' -ExtensionVersion '1.0.43' -ChromeVersion '49.0.2623.110'
.EXAMPLE
Get-ChromeExtension -ExtensionID 'djflhoibgkdhkhhcedjiklpkjnoahfmg' -ExtensionTitle 'User-Agent Switcher for Chrome' -ExtensionVersion '1.0.43' -ChromeVersion '49.0.2623.110' -Path 'C:\Chrome'
#>
[CmdletBinding()]
[OutputType([void])]
Param(
[Parameter(Mandatory=$true, HelpMessage='The Chrome extension ID')]
[string]$ExtensionID,
[Parameter(Mandatory=$true, HelpMessage='The Chrome extension title')]
[string]$ExtensionTitle,
[Parameter(Mandatory=$true, HelpMessage='The Chrome extension version')]
[string]$ExtensionVersion,
[Parameter(Mandatory=$false, HelpMessage='The Chrome browser version')]
[SYstem.Version]$ChromeVersion,
[Parameter(Mandatory=$false, HelpMessage='The folder path to save the extension to')]
[string]$Path,
[Parameter(Mandatory=$false, HelpMessage='Use HTTP instead of HTTPS')]
[switch]$UseHTTP
)
# force PSBoundParameters to exist during debugging https://technet.microsoft.com/en-us/library/dd347652.aspx
$parameters = $PSBoundParameters
if (-not($parameters.ContainsKey('ChromeVersion'))) {
if($UseHTTP) {
$ChromeVersion = Get-ChromeVersion -UseHTTP
} else {
$ChromeVersion = Get-ChromeVersion
}
}
$extensionFolder = $env:USERPROFILE,'Downloads' -join '\'
if ($parameters.ContainsKey('Path')) {
$Path = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($Path)
$extensionFolder = $Path
}
if (-not(Test-Path -Path $extensionFolder -PathType Container)) {
throw "$extensionFolder does not exist"
}
$protocol = 'https'
if($UseHTTP) {
$protocol = 'http'
}
$uri = ('{0}://clients2.google.com/service/update2/crx?response=redirect&prodversion={1}&x=id%3D{2}%26uc' -f $protocol,$ChromeVersion,$ExtensionID)
$params = @{
Uri = $uri;
Method = 'Get';
ContentType = 'application/x-chrome-extension' # 'application/octet-stream' also works
UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/$ChromeVersion Safari/537.36"; # Chrome 64-bit on Windows 10 64-bit
}
$proxyUri = [System.Net.WebRequest]::GetSystemWebProxy().GetProxy($uri)
$ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue
if(([string]$proxyUri) -ne $uri) {
$response = Invoke-WebRequest @params -Proxy $proxyUri -ProxyUseDefaultCredentials -UseBasicParsing
} else {
$response = Invoke-WebRequest @params -UseBasicParsing
}
$statusCode = $response.StatusCode
if ($statusCode -eq 200) {
$bytes = $response.Content
$extensionFile = $extensionFolder,('{0}-{1}.crx' -f $ExtensionTitle,$ExtensionVersion) -join '\'
Set-Content -Path $extensionFile -Value $bytes -Encoding Byte -Force -NoNewline
} else {
throw 'Request failed with status code $statusCode'
}
}
Function Get-ChromeInstaller() {
<#
.SYNOPSIS
Gets the Chrome installer file.
.DESCRIPTION
Gets he Chrome installer file for a specific architecture and release channel.
.PARAMETER Architecture
The architecture of Chrome to get the installer for. Valid values are '32' and '64'.
.PARAMETER ChromeVersion
Specifies a Chrome version rather than automatically retrieving the version online.
.PARAMETER Channel
The Chrome release channel to get the installer for. Defaults to 'stable'. Valid values are 'dev', 'canary', 'beta', 'stable'.
.PARAMETER Path
The folder path to save the installer to.
.PARAMETER UseHTTP
Use HTTP instead of HTTPS.
.EXAMPLE
Get-ChromeInstaller -Architecture 32
.EXAMPLE
Get-ChromeInstaller -Architecture 64
.EXAMPLE
Get-ChromeInstaller -Architecture 64 -UseHTTP
.EXAMPLE
Get-ChromeInstaller -Architecture 64 -Channel 'beta'
.EXAMPLE
Get-ChromeInstaller -Architecture 64 -Channel 'beta' -ChromeVersion '49.0.2623.110'
.EXAMPLE
Get-ChromeInstaller -Architecture 64 -Channel 'beta' -ChromeVersion '49.0.2623.110' -Path 'C:\Chrome'
#>
[CmdletBinding()]
[OutputType([void])]
Param(
[Parameter(Mandatory=$true, HelpMessage='The Chrome architecture')]
[ValidateSet('64','32', IgnoreCase = $true)]
[string]$Architecture,
[Parameter(Mandatory=$false, HelpMessage='The Chrome browser version')]
[System.Version]$ChromeVersion,
[Parameter(Mandatory=$false, HelpMessage='The Chrome release channel')]
[ValidateSet('dev', 'canary', 'beta', 'stable', IgnoreCase = $true)]
[string]$Channel = 'stable',
[Parameter(Mandatory=$false, HelpMessage='The folder path to save the installer to')]
[string]$Path,
[Parameter(Mandatory=$false, HelpMessage='Use HTTP instead of HTTPS')]
[switch]$UseHTTP
)
# force PSBoundParameters to exist during debugging https://technet.microsoft.com/en-us/library/dd347652.aspx
$parameters = $PSBoundParameters
if (-not($parameters.ContainsKey('ChromeVersion'))) {
if ($UseHTTP) {
$ChromeVersion = Get-ChromeVersion -Channel $Channel -UseHTTP
} else {
$ChromeVersion = Get-ChromeVersion -Channel $Channel
}
}
$installerFolder = $env:USERPROFILE,'Downloads' -join '\'
if ($parameters.ContainsKey('Path')) {
$Path = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($Path)
$installerFolder = $Path
}
if (-not(Test-Path -Path $installerFolder -PathType Container)) {
throw "$installerFolder does not exist"
}
$installer = 'GoogleChromeStandaloneEnterprise.msi'
if ($Architecture -ieq '64') {
$installer = 'GoogleChromeStandaloneEnterprise64.msi'
}
$protocol = 'https'
if($UseHTTP) {
$protocol = 'http'
}
$uri = ('{0}://dl.google.com/edgedl/chrome/install/{1}' -f $protocol,$installer)
$params = @{
Uri = $uri;
Method = 'Get';
UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/$ChromeVersion Safari/537.36"; # Chrome 64-bit on Windows 10 64-bit
}
$proxyUri = [System.Net.WebRequest]::GetSystemWebProxy().GetProxy($uri)
$ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue
if(([string]$proxyUri) -ne $uri) {
$response = Invoke-WebRequest @params -Proxy $proxyUri -ProxyUseDefaultCredentials -UseBasicParsing
} else {
$response = Invoke-WebRequest @params -UseBasicParsing
}
$statusCode = $response.StatusCode
if ($statusCode -eq 200) {
$bytes = $response.Content
$installerFile = $installerFolder,('{0}{1}_{2}.msi' -f 'GoogleChromeStandaloneEnterprise',$Architecture,$ChromeVersion) -join '\'
Set-Content -Path $installerFile -Value $bytes -Encoding Byte -Force -NoNewline
} else {
throw 'Request failed with status code $statusCode'
}
}
Function Get-ChromeGroupPolicyTemplate() {
<#
.SYNOPSIS
Gets the Chrome Group Policy template zip file.
.DESCRIPTION
Gets the Chrome Group Policy template zip file.
.PARAMETER ChromeVersion
Specifies a Chrome version rather than automatically retrieving the version online.
.PARAMETER Path
The folder path to save the template zip file to.
.PARAMETER UseHTTP
Use HTTP instead of HTTPS.
.EXAMPLE
Get-ChromeGroupPolicyTemplate
.EXAMPLE
Get-ChromeGroupPolicyTemplate -UseHTTP
.EXAMPLE
Get-ChromeGroupPolicyTemplate -ChromeVersion '49.0.2623.110'
.EXAMPLE
Get-ChromeGroupPolicyTemplate -ChromeVersion '49.0.2623.110' -Path 'C:\Chrome'
#>
[CmdletBinding()]
[OutputType([void])]
Param(
[Parameter(Mandatory=$false, HelpMessage='The Chrome browser version')]
[System.Version]$ChromeVersion,
[Parameter(Mandatory=$false, HelpMessage='The folder path to save the template zip file to')]
[string]$Path,
[Parameter(Mandatory=$false, HelpMessage='Use HTTP instead of HTTPS')]
[switch]$UseHTTP
)
# force PSBoundParameters to exist during debugging https://technet.microsoft.com/en-us/library/dd347652.aspx
$parameters = $PSBoundParameters
if (-not($parameters.ContainsKey('ChromeVersion'))) {
if ($UseHTTP) {
$ChromeVersion = Get-ChromeVersion -UseHTTP
} else {
$ChromeVersion = Get-ChromeVersion
}
}
$templateFolder = $env:USERPROFILE,'Downloads' -join '\'
if ($parameters.ContainsKey('Path')) {
$Path = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($Path)
$templateFolder = $Path
}
if (-not(Test-Path -Path $templateFolder -PathType Container)) {
throw "$templateFolder does not exist"
}
$protocol = 'https'
if($UseHTTP) {
$protocol = 'http'
}
$uri = '{0}://dl.google.com/dl/edgedl/chrome/policy/policy_templates.zip' -f $protocol
$params = @{
Uri = $uri;
Method = 'Get';
}
$proxyUri = [System.Net.WebRequest]::GetSystemWebProxy().GetProxy($uri)
$ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue
if(([string]$proxyUri) -ne $uri) {
$response = Invoke-WebRequest @params -Proxy $proxyUri -ProxyUseDefaultCredentials -UseBasicParsing
} else {
$response = Invoke-WebRequest @params -UseBasicParsing
}
$statusCode = $response.StatusCode
if ($statusCode -eq 200) {
$bytes = $response.Content
$zipFile = $templateFolder,('{0}_{1}.zip' -f 'ChromeGroupPolicyTemplate',$ChromeVersion) -join '\'
Set-Content -Path $zipFile -Value $bytes -Encoding Byte -Force -NoNewline
} else {
throw 'Request failed with status code $statusCode'
}
}
Function Get-GoogleUpdateGroupPolicyTemplate() {
<#
.SYNOPSIS
Gets the Google Update Group Policy template file.
.DESCRIPTION
Gets the Google Update Group Policy template file.
.PARAMETER Path
The folder path to save the template file to.
.PARAMETER UseHTTP
Use HTTP instead of HTTPS.
.EXAMPLE
Get-GoogleUpdateGroupPolicyTemplate
.EXAMPLE
Get-GoogleUpdateGroupPolicyTemplate -UseHTTP
.EXAMPLE
Get-GoogleUpdateGroupPolicyTemplate -Path 'C:\Chrome'
#>
[CmdletBinding()]
[OutputType([void])]
Param(
[Parameter(Mandatory=$false, HelpMessage='The folder path to save the template file to')]
[string]$Path,
[Parameter(Mandatory=$false, HelpMessage='Use HTTP instead of HTTPS')]
[switch]$UseHTTP
)
# force PSBoundParameters to exist during debugging https://technet.microsoft.com/en-us/library/dd347652.aspx
$parameters = $PSBoundParameters
$templateFolder = $env:USERPROFILE,'Downloads' -join '\'
if ($parameters.ContainsKey('Path')) {
$Path = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($Path)
$templateFolder = $Path
}
if (-not(Test-Path -Path $templateFolder -PathType Container)) {
throw "$templateFolder does not exist"
}
$protocol = 'https'
if($UseHTTP) {
$protocol = 'http'
}
$uri = '{0}://dl.google.com/update2/enterprise/googleupdateadmx.zip' -f $protocol
$params = @{
Uri = $uri;
Method = 'Get';
}
$proxyUri = [System.Net.WebRequest]::GetSystemWebProxy().GetProxy($uri)
$ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue
if(([string]$proxyUri) -ne $uri) {
$response = Invoke-WebRequest @params -Proxy $proxyUri -ProxyUseDefaultCredentials -UseBasicParsing
} else {
$response = Invoke-WebRequest @params -UseBasicParsing
}
$statusCode = $response.StatusCode
if ($statusCode -eq 200) {
$bytes = $response.Content
$zipFile = $templateFolder,'GoogleUpdatePolicyTemplate.zip' -join '\'
Set-Content -Path $zipFile -Value $bytes -Encoding Byte -Force -NoNewline
} else {
throw 'Request failed with status code $statusCode'
}
}