-
Notifications
You must be signed in to change notification settings - Fork 23
/
VSTSAgent.psm1
631 lines (508 loc) · 22.2 KB
/
VSTSAgent.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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
class VSTSAgentVersion : System.IComparable {
[int] $Major;
[int] $Minor;
[int] $Revision;
VSTSAgentVersion([string] $version) {
$version -match "(\d+)\.(\d+)\.(\d+)" | Out-Null
if ( $Matches.Count -ne 4 ) { throw "Invalid VSTS Agent version: $version" }
$this.Major = [int]($Matches[1]);
$this.Minor = [int]($Matches[2]);
$this.Revision = [int]($Matches[3]);
}
[string] ToString() {
$result = "$($this.Major).$($this.Minor).$($this.Revision)"
return $result
}
[int] CompareTo([object]$obj) {
if ($null -eq $obj) { return 1 }
if ($obj -isnot [VSTSAgentVersion]) { throw "Object is not a VSTSAgentVersion"}
return [VSTSAgentVersion]::Compare($this, $obj)
}
static [int] Compare([VSTSAgentVersion]$a, [VSTSAgentVersion]$b) {
if ($a.Major -lt $b.Major) { return -1 }
if ($a.Major -gt $b.Major) { return 1 }
if ($a.Minor -lt $b.Minor) { return -1 }
if ($a.Minor -gt $b.Minor) { return 1 }
if ($a.Revision -lt $b.Revision) { return -1 }
if ($a.Revision -gt $b.Revision) { return 1 }
return 0
}
[boolean] Equals ( [object]$obj ) {
return [VSTSAgentVersion]::Compare($this, $obj) -eq 0;
}
}
<#
.SYNOPSIS
Enable TLS12 security protocol required by the GitHub https certs.
#>
function Set-SecurityProtocol {
[CmdletBinding(SupportsShouldProcess)]
param()
$secProtocol = [System.Net.ServicePointManager]::SecurityProtocol
if ( ($secProtocol -band [System.Net.SecurityProtocolType]::Tls12) -ne 0 ) { return }
if ( $PSCmdlet.ShouldProcess('[System.Net.ServicePointManager]::SecurityProtocol', 'Add [System.Net.SecurityProtocolType]::Tls12') ) {
$secProtocol += [System.Net.SecurityProtocolType]::Tls12;
[System.Net.ServicePointManager]::SecurityProtocol = $secProtocol
}
}
<#
.SYNOPSIS
Convert current OS platform to required Agent platform
#>
function Get-Platform {
param ([string]$OS = $PSVersionTable.OS)
switch -regex ($OS) {
'linux' { 'linux' }
'darwin' { 'osx' }
default { 'win' }
}
}
<#
.SYNOPSIS
Finds available VSTS agents
.DESCRIPTION
Searches the agent's Github release pages for available versions of the Agent.
.PARAMETER MinimumVersion
The minimum agent version required.
.PARAMETER MaximumVersion
The maximum agent version allowed.
.PARAMETER RequiredVersion
The required agent version.
.PARAMETER Latest
Find the latest available agent version.
.PARAMETER Platform
The platform required for the agent.
.PARAMETER AgentType
Install Node6-based vsts-agent or Node10-based pipelines-agent asset
#>
function Find-VSTSAgent {
[CmdletBinding( DefaultParameterSetName = "NoVersion")]
param(
[parameter(Mandatory = $true, ParameterSetName = 'MinVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MinimumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'MaxVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MaximumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'RequiredVersion')]
[VSTSAgentVersion]$RequiredVersion,
[parameter(Mandatory = $true, ParameterSetName = 'Latest')]
[switch]$Latest,
[parameter(Mandatory = $false)]
[string]$Platform = 'win',
[parameter(Mandatory = $false)]
[ValidateSet('vsts-agent','pipelines-agent')]
[string]$AgentType = 'vsts-agent'
)
$rootUri = [uri]"https://github.com"
if ( $Latest ) {
$releasesRelativeUri = [uri]"/Microsoft/vsts-agent/releases/latest"
}
else
{
$releasesRelativeUri = [uri]"/Microsoft/vsts-agent/releases"
}
Set-SecurityProtocol
$page = [uri]::new( $rootUri, $releasesRelativeUri )
$queriedPages = @()
do {
$result = Invoke-WebRequest $page -UseBasicParsing
$result.Links.href | Where-Object { $_ -match "$($AgentType)-$($Platform)-x64-(\d+\.\d+\.\d+)\..+$" } | ForEach-Object {
$instance = [PSCustomObject] @{
'Platform' = $Platform
'Version' = [VSTSAgentVersion]$Matches[1]
'Uri' = [uri]::new($_, [System.UriKind]::RelativeOrAbsolute)
}
# Make it absolute
if ( -not $instance.Uri.IsAbsoluteUri ) { $instance.Uri = [uri]::new($rootUri, $instance.Uri) }
if ( $RequiredVersion -and $instance.Version -ne $RequiredVersion) { return }
if ( $MinimumVersion -and $instance.Version -lt $MinimumVersion) { return }
if ( $MaximumVersion -and $instance.Version -gt $MaximumVersion) { return }
Write-Verbose "Found agent at $($instance.Uri)"
Write-Output $instance
}
$queriedPages += $page
$page = $result.Links.href | Where-Object {
$_ -match "$releasesRelativeUri\?after=v(\d+\.\d+\.\d+)$" -and $queriedPages -notcontains $_
} | Select-Object -First 1
} while ($page)
}
<#
.SYNOPSIS
Install a VSTS Agent.
.DESCRIPTION
Download and install a VSTS Agent matching the specified requirements.
.PARAMETER MinimumVersion
The minimum agent version required.
.PARAMETER MaximumVersion
The maximum agent version allowed.
.PARAMETER RequiredVersion
The required agent version.
.PARAMETER AgentDirectory
What directory should agents be installed into?
.PARAMETER Work
Work directory where job data is stored. Defaults to _work under the
root of the agent directory. The work directory is owned by a given
agent and should not share between multiple agents.
.PARAMETER Name
What name should the agent use?
.PARAMETER Pool
What pool should the agent be registered into?
.PARAMETER PAT
What personal access token (PAT) should be used to auth with VSTS?
.PARAMETER ServerUrl
What server url should the agent be registered to? Eg. 'https://account.visualstudio.com'
.PARAMETER Replace
Should the new agent replace any existing one on the account?
.PARAMETER LogonCredential
What user credentials should be used by the agent service?
.PARAMETER Cache
Where should agent downloads be cached?
.PARAMETER AgentType
Install Node6-based vsts-agent or Node10-based pipelines-agent asset
#>
function Install-VSTSAgent {
[CmdletBinding(SupportsShouldProcess, DefaultParameterSetName = "NoVersion")]
param(
[parameter(Mandatory = $true, ParameterSetName = 'MinVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MinimumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'MaxVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MaximumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'RequiredVersion')]
[VSTSAgentVersion]$RequiredVersion,
[parameter(Mandatory = $false)]
[string]$AgentDirectory = [IO.Path]::Combine($env:USERPROFILE, "VSTSAgents"),
[parameter(Mandatory = $false)]
[string]$Work,
[parameter(Mandatory = $false)]
[string]$Name = [System.Environment]::MachineName + "-$(Get-Random)",
[parameter(Mandatory = $false)]
[string]$Pool = 'Default',
[parameter(Mandatory = $false)]
[string]$DeploymentGroup = '',
[parameter(Mandatory = $false)]
[string]$DeploymentGroupTags = '',
[parameter(Mandatory = $false)]
[string]$Environment = '',
[parameter(Mandatory = $false)]
[string]$VirtualMachineResourceTags = '',
[parameter(Mandatory = $false)]
[string]$ProjectName = '',
[parameter(Mandatory = $true)]
[securestring]$PAT,
[parameter(Mandatory = $true)]
[uri]$ServerUrl,
[parameter(Mandatory = $false)]
[string]$ProxyUrl,
[parameter(Mandatory = $false)]
[switch]$Replace,
[parameter(Mandatory = $false)]
[pscredential]$LogonCredential,
[parameter(Mandatory = $false)]
[string]$Cache = [io.Path]::Combine($env:USERPROFILE, ".vstsagents"),
[parameter(Mandatory = $false)]
[ValidateSet('vsts-agent','pipelines-agent')]
[string]$AgentType = 'vsts-agent'
)
if ($PSVersionTable.Platform -and $PSVersionTable.Platform -ne 'Win32NT') {
throw "Not Implemented: Support for $($PSVersionTable.Platform), contributions welcome."
}
if ( $Verbose ) { $VerbosePreference = 'Continue' }
$existing = Get-VSTSAgent -AgentDirectory $AgentDirectory -NameFilter $Name
if ( $existing ) {
if ($Replace) {
Uninstall-VSTSAgent -NameFilter $Name -AgentDirectory $AgentDirectory -PAT $PAT -ErrorAction Stop
}
else { throw "Agent $Name already exists in $AgentDirectory" }
}
$findArgs = @{ 'Platform' = 'win' }
if ( $MinimumVersion ) { $findArgs['MinimumVersion'] = $MinimumVersion }
if ( $MaximumVersion ) { $findArgs['MaximumVersion'] = $MaximumVersion }
if ( $RequiredVersion ) { $findArgs['RequiredVersion'] = $RequiredVersion }
if ( $AgentType ) { $findArgs['AgentType'] = $AgentType }
$agent = Find-VSTSAgent @findArgs | Sort-Object -Descending -Property Version | Select-Object -First 1
if ( -not $agent ) { throw "Could not find agent matching requirements." }
Write-Verbose "Installing agent at $($agent.Uri)"
$fileName = $agent.Uri.Segments[$agent.Uri.Segments.Length - 1]
$destPath = [IO.Path]::Combine($Cache, "$($agent.Version)\$fileName")
if ( -not (Test-Path $destPath) ) {
$destDirectory = [io.path]::GetDirectoryName($destPath)
if (!(Test-Path $destDirectory -PathType Container)) {
New-Item "$destDirectory" -ItemType Directory | Out-Null
}
Write-Verbose "Downloading agent from $($agent.Uri)"
try { Start-BitsTransfer -Source $agent.Uri -Destination $destPath }
catch { throw "Downloading $($agent.Uri) failed: $_" }
}
else { Write-Verbose "Skipping download as $destPath already exists." }
$agentFolder = [io.path]::Combine($AgentDirectory, $Name)
Write-Verbose "Unzipping $destPath to $agentFolder"
if ( $PSVersionTable.PSVersion.Major -le 5 ) {
Add-Type -AssemblyName System.IO.Compression.FileSystem -ErrorAction Stop
}
if (Test-Path -Path $agentFolder -PathType Container) {
if ($PSCmdlet.ShouldProcess($agentFolder, "Overwriting with content of $($destPath)")) {
[System.IO.Compression.ZipFile]::ExtractToDirectory($destPath, $agentFolder, $true)
}
else {
throw "$($agentFolder) already exists."
}
}
else {
[System.IO.Compression.ZipFile]::ExtractToDirectory($destPath, $agentFolder)
}
$configPath = [io.path]::combine($agentFolder, 'config.cmd')
$configPath = Get-ChildItem $configPath -ErrorAction SilentlyContinue
if ( -not $configPath ) { throw "Agent $agentFolder is missing config.cmd" }
[string[]]$configArgs = @('--unattended', '--url', "$ServerUrl", '--auth', `
'pat', '--agent', "$Name", '--runAsService')
if ($Pool) { $configArgs += '--pool', $Pool }
if ($DeploymentGroup) { $configArgs += '--deploymentgroup', '--deploymentgroupname', $DeploymentGroup }
if ($DeploymentGroupTags) { $configArgs += '--addDeploymentGroupTags', '--deploymentGroupTags', $DeploymentGroupTags }
if ($Environment) { $configArgs += '--environment', '--environmentName', $Environment }
if ($VirtualMachineResourceTags) { $configArgs += '--addvirtualmachineresourcetags', '--virtualmachineresourcetags', $VirtualMachineResourceTags }
if ($ProjectName) { $configArgs += '--projectname', $ProjectName }
if ( $Replace ) { $configArgs += '--replace' }
if ( $LogonCredential ) { $configArgs += '--windowsLogonAccount', $LogonCredential.UserName }
if ( $ProxyUrl ) { $configArgs += '--proxyurl', $ProxyUrl }
if ( $Work ) { $configArgs += '--work', $Work }
if ( -not $PSCmdlet.ShouldProcess("$configPath $configArgs", "Start-Process") ) { return }
$token = [System.Net.NetworkCredential]::new($null, $PAT).Password
$configArgs += '--token', $token
if ( $LogonCredential ) {
$configArgs += '--windowsLogonPassword', `
[System.Net.NetworkCredential]::new($null, $LogonCredential.Password).Password
}
$outFile = [io.path]::Combine($agentFolder, "out.log")
$errorFile = [io.path]::Combine($agentFolder, "error.log")
Write-Verbose "Registering $Name to $Pool at $ServerUrl"
Start-Process $configPath -ArgumentList $configArgs -NoNewWindow -Wait `
-RedirectStandardOutput $outFile -RedirectStandardError $errorFile -ErrorAction Stop
if (Test-Path $errorFile) {
Get-Content $errorFile | Write-Error
}
}
<#
.SYNOPSIS
Uninstall agents.
.DESCRIPTION
Uninstall any agents matching the specified criteria.
.PARAMETER MinimumVersion
Minimum version of agents to uninstall.
.PARAMETER MaximumVersion
Maximum version of agents to uninstall.
.PARAMETER RequiredVersion
Required version of agents to uninstall.
.PARAMETER AgentDirectory
What directory should be searched for existing agents?
.PARAMETER NameFilter
Only agents whose names match this filter will be uninstalled.
.PARAMETER PAT
The personal access token used to auth with VSTS.
#>
function Uninstall-VSTSAgent {
[CmdletBinding(SupportsShouldProcess, DefaultParameterSetName = "NoVersion")]
param(
[parameter(Mandatory = $true, ParameterSetName = 'MinVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MinimumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'MaxVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MaximumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'RequiredVersion')]
[VSTSAgentVersion]$RequiredVersion,
[parameter(Mandatory = $false)]
[string]$AgentDirectory,
[parameter(Mandatory = $false)]
[string]$NameFilter,
[parameter(Mandatory = $true)]
[securestring]$PAT
)
$getArgs = @{}
$PSBoundParameters.Keys | Where-Object { $_ -ne 'PAT' } | ForEach-Object {
$getArgs[$_] = $PSBoundParameters[$_]
}
$token = [System.Net.NetworkCredential]::new($null, $PAT).Password
Get-VSTSAgent @getArgs | ForEach-Object {
if ( -not $PSCmdlet.ShouldProcess("$($_.Name) - $($_.Path)", "Uninstall")) { return }
$configPath = [io.path]::Combine($_.Path.LocalPath, 'config.cmd')
$configArgs = @('remove', '--unattended', '--auth', 'pat', '--token', "$token")
$outFile = [io.path]::Combine($_.Path.LocalPath, "out.log")
$errorFile = [io.path]::Combine($_.Path.LocalPath, "error.log")
Start-Process $configPath -ArgumentList $configArgs -NoNewWindow -Wait `
-RedirectStandardOutput $outFile -RedirectStandardError $errorFile
if ((Test-Path $errorFile) -and (Get-ChildItem $errorFile).Length -gt 0) {
Get-Content $errorFile | Write-Error
return; # Don't remove the agent folder if something went wrong.
}
Remove-Item $_.Path.LocalPath -Recurse -Force -ErrorAction Continue
if ( $_.Work.IsAbsoluteUri ) {
Remove-Item $_.Work.LocalPath -Recurse -Force -ErrorAction Continue
}
}
}
<#
.SYNOPSIS
Get all the agents installed.
.PARAMETER MinimumVersion
The minimum agent version to get.
.PARAMETER MaximumVersion
The maximum agent version to get.
.PARAMETER RequiredVersion
The required agent version to get.
.PARAMETER AgentDirectory
What directory should be searched for installed agents?
.PARAMETER NameFilter
Only agents whose names pass the filter are included.
#>
function Get-VSTSAgent {
[CmdletBinding(DefaultParameterSetName = "NoVersion")]
param(
[parameter(Mandatory = $true, ParameterSetName = 'MinVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MinimumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'MaxVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MaximumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'RequiredVersion')]
[VSTSAgentVersion]$RequiredVersion,
[parameter(Mandatory = $false)]
[string]$AgentDirectory = [io.Path]::Combine($env:USERPROFILE, "VSTSAgents"),
[parameter(Mandatory = $false)]
[string]$NameFilter = '*'
)
Get-ChildItem "$AgentDirectory\**\.agent" -Attributes '!D+H,!D' -ErrorAction SilentlyContinue |
ForEach-Object {
Write-Verbose "Found agent at $($_.FullName)"
$agentFullDirectory = $_.Directory.FullName
$agentFullPath = $_.FullName
try {
$agent = Get-Content $agentFullPath | ConvertFrom-Json
Write-Verbose "Agent is named $($agent.agentName)"
if ( $NameFilter -and ($agent.agentName -notlike $NameFilter) ) {
Write-Verbose "Skipping agent because $($agent.agentName) is not like $NameFilter"
return
}
$configPath = [io.path]::combine($agentFullDirectory, 'config.cmd')
$configPath = Get-ChildItem $configPath -ErrorAction SilentlyContinue
if ( -not $configPath ) {
Write-Warning "Agent $agentFullDirectory is missing config.cmd"
return
}
$version = & $configPath --version
if ( $RequiredVersion -and $version -ne $RequiredVersion) {
Write-Verbose "Skipping agent because $version not match $RequiredVersion"
return
}
if ( $MinimumVersion -and $version -lt $MinimumVersion) {
Write-Verbose "Skipping agent because $version is less than $MinimumVersion"
return
}
if ( $MaximumVersion -and $version -gt $MaximumVersion) {
Write-Verbose "Skipping agent because $version is greater than $MaximumVersion"
return
}
if ( Test-Path "$($_.Directory.FullName)\.service" ) {
$serviceName = Get-Content "$($_.Directory.FullName)\.service"
$service = Get-Service $serviceName
}
if ( Test-Path "$($_.Directory.FullName)\.proxy" ) {
$proxyUrl = Get-Content "$($_.Directory.FullName)\.proxy"
}
[pscustomobject]@{
'Id' = $agent.agentId
'Name' = $agent.agentName
'PoolId' = $agent.poolId
'ServerUrl' = [uri]$agent.serverUrl
'Work' = [uri]$agent.workFolder
'Service' = $service
'Version' = $version
'ProxyUrl' = $proxyUrl
'Path' = [uri]$agentFullDirectory
}
}
catch { Write-Error "Exception processing agent at $agentFullPath\: $_" }
}
}
<#
.SYNOPSIS
Starts any stopped services for matching VSTS Agents
.PARAMETER MinimumVersion
Mimumum version for agents.
.PARAMETER MaximumVersion
Maximum version for agents.
.PARAMETER RequiredVersion
Required version for agents.
.PARAMETER AgentDirectory
Directory to search installed agents.
.PARAMETER NameFilter
Only start services for agents whose names pass this filter.
#>
function Start-VSTSAgent {
[CmdletBinding(SupportsShouldProcess, DefaultParameterSetName = "NoVersion")]
param(
[parameter(Mandatory = $true, ParameterSetName = 'MinVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MinimumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'MaxVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MaximumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'RequiredVersion')]
[VSTSAgentVersion]$RequiredVersion,
[parameter(Mandatory = $false)]
[string]$AgentDirectory,
[parameter(Mandatory = $false)]
[string]$NameFilter
)
$stoppedAgents = Get-VSTSAgent @PSBoundParameters | Where-Object {
$_.Service.Status -eq [System.ServiceProcess.ServiceControllerStatus]::Stopped
}
$stoppedAgents | ForEach-Object {
if ( $PSCmdlet.ShouldProcess($_.Service.Name, "Start-Service") ) {
Start-Service $_.Service
}
}
}
<#
.SYNOPSIS
Stop any running services for agents.
.PARAMETER MinimumVersion
Mimumum version for agents.
.PARAMETER MaximumVersion
Maximum version for agents.
.PARAMETER RequiredVersion
Required version for agents.
.PARAMETER AgentDirectory
Directory to search installed agents.
.PARAMETER NameFilter
Only start services for agents whose names pass this filter.
#>
function Stop-VSTSAgent {
[CmdletBinding(SupportsShouldProcess, DefaultParameterSetName = "NoVersion")]
param(
[parameter(Mandatory = $true, ParameterSetName = 'MinVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MinimumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'MaxVersion')]
[parameter(Mandatory = $true, ParameterSetName = 'MinMaxVersion')]
[VSTSAgentVersion]$MaximumVersion,
[parameter(Mandatory = $true, ParameterSetName = 'RequiredVersion')]
[VSTSAgentVersion]$RequiredVersion,
[parameter(Mandatory = $false)]
[string]$AgentDirectory,
[parameter(Mandatory = $false)]
[string]$NameFilter
)
$runningAgents = Get-VSTSAgent @PSBoundParameters | Where-Object {
$_.Service.Status -eq [System.ServiceProcess.ServiceControllerStatus]::Running
}
$runningAgents | ForEach-Object {
if ( $PSCmdlet.ShouldProcess($_.Service.Name, "Stop-Service") ) {
Stop-Service $_.Service
}
}
}