forked from dstamen/Powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVCSA-VAMI-Patch.psm1
More file actions
631 lines (626 loc) · 21.9 KB
/
VCSA-VAMI-Patch.psm1
File metadata and controls
631 lines (626 loc) · 21.9 KB
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
Function Get-VCSAUpdatePolicy {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function checks for information about the VCSA Update Policy.
.DESCRIPTION
Function to return details about the update policy
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdatePolicy
#>
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.policy' -Server $server.Name
$results = $systemUpdateAPI.get()
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Default URL" = $results.default_url;
"Custom URL" = $results.custom_url;
"Auto Stage" = $results.auto_stage;
"Auto Update" = $results.auto_update;
"Check Schedule" = $results.check_schedule
#"Check Schedule" = "Day=" + $results.check_schedule.day + " Hour=" + $results.check_schedule.hour + " Minute=" + $results.check_schedule.minute
}
$summaryResult
}
}
Function Set-VCSAUpdatePolicy {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function checks for information about the VCSA Update Policy.
.DESCRIPTION
Function to return details about the update policy
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Set-VCSAUpdatePolicy -AutoStage $True
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Set-VCSAUpdatePolicy -CustomURL https://linktocustomurl
Set-VCSAUpdatePolicy -CustomURL Clear
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Set-VCSAUpdatePolicy -UsernameURL admin
Set-VCSAUpdatePolicy -PasswordURL Password
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Set-VCSAUpdatePolicy -CheckSchedule Daily
Set-VCSAUpdatePolicy -CheckSchedule WeeklySunday
Set-VCSAUpdatePolicy -CheckSchedule WeeklyMonday
Set-VCSAUpdatePolicy -CheckSchedule WeeklyTuesday
Set-VCSAUpdatePolicy -CheckSchedule WeeklyWednesday
Set-VCSAUpdatePolicy -CheckSchedule WeeklyThursday
Set-VCSAUpdatePolicy -CheckSchedule WeeklyFriday
Set-VCSAUpdatePolicy -CheckSchedule WeeklySaturday
#>
Param(
[parameter(Mandatory=$false)]
[string] $AutoStage,
[parameter(Mandatory=$false)]
[string] $CustomURL,
[parameter(Mandatory=$false)]
[string] $UsernameURL,
[parameter(Mandatory=$false)]
[string] $PasswordURL,
[parameter(Mandatory=$false)]
[string] $CheckSchedule
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.policy' -Server $server.Name
$results = $systemUpdateAPI.get()
$policy = $systemUpdateAPI.help.set.policy.Create()
$policy.custom_url = $results.custom_url
$policy.username = $results.username
$policy.password = $results.password
$policy.check_schedule = $results.check_schedule
$policy.auto_stage = $results.auto_stage
if ($AutoStage) {
$policy.auto_stage = $AutoStage
Write-Host "Updating VCSA Update Policy Autostage to $AutoStage"
}
if ($CustomURL) {
if ($CustomURL -like "Clear") {
$policy.custom_url = $null
Write-Host "Updating VCSA Update Policy Custom URL to Cleared"
}
else {
$policy.custom_url = $CustomURL
Write-Host "Updating VCSA Update Policy Custom URL to $CustomURL"
}
}
if ($UsernameURL) {
$policy.username = $UsernameURL
Write-Host "Updating VCSA Update Policy Username to $UsernameURL"
}
if ($PasswordURL) {
[VMware.VimAutomation.Cis.Core.Types.V1.Secret]$policy.password = $PasswordURL
Write-Host "Updating VCSA Update Policy Password to $PasswordURL"
}
if ($CheckSchedule) {
if ($CheckSchedule -like "Daily") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="EVERYDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklyMonday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="MONDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklyTuesday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="TUESDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklyWednesday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="WEDNESDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklyThursday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="THURSDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklyFriday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="FRIDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklySaturday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="SATURDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
elseif ($CheckSchedule -like "WeeklySunday") {
$policy.check_schedule[0] = @{hour=0;minute=0;day="SUNDAY"}
Write-Host "Updating VCSA Update Policy Custom URL to $CheckSchedule"
}
}
$results = $systemUpdateAPI.set($policy)
$results
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Status" = "Policy Updated"
}
$summaryResult
}
}
Function Get-VCSAUpdateStatus {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function checks for information about the latest VCSA Update Status.
.DESCRIPTION
Function to return details about the update status
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdateStatus
#>
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update' -Server $server.Name
$results = $systemUpdateAPI.get()
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"State" = $results.state;
"Version" = $results.version;
"Last Check" = $results.latest_query_time;
"Stage Task" = $results.task.subtasks.stage;
"Install Task" = $results.task.subtasks.install;
"Progress" = $results.task.progress;
"Operation" = $results.task.operation
}
$summaryResult
}
}
Function Get-VCSAUpdate {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function checks for information about the latest VCSA Updates.
.DESCRIPTION
Function to return details about the available updates. If No Source is Specified, it defaults to Online
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdate
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdate -Source "Online"
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdate -Source "Local"
#>
Param(
[parameter(Mandatory=$false)]
[String] $Source
)
if ($Source -eq "Local") {
$SourceType = "LOCAL"
}
else {
$SourceType = "LOCAL_AND_ONLINE"
}
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
try {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$results = $systemUpdateAPI.list($SourceType)
ForEach($result in $results) {
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Release Date" = $result.release_date;
"Version" = $result.version;
"Update Type" = $result.update_type;
"Severity" = $result.severity;
"Priority" = $result.priority;
"SizeGB" = [math]::Round(([int]$result.size / 1024),2)
"Reboot Required" = $result.reboot_required;
"Description" = $result.description.args
}
$summaryResult
}
}
catch {
$e=$_
if ($e.Exception -like "*com.vmware.vapi.std.errors.not_found*") {
Write-Warning "No applicable update found"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthenticated *") {
Write-Warning "Session is not authenticated"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthorized*") {
Write-Warning "Session is not authorized to perform this operation"
}
else {
Write-Warning "You have encountered an error, please validate server."
}
}
}
}
Function Get-VCSAUpdateDetail {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function checks for information about the latest VCSA Update.
.DESCRIPTION
Function to return details about the update
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdateDetail -Version "6.7.0.20000"
#>
Param(
[parameter(Mandatory=$true)]
[String] $Version
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$result = $systemUpdateAPI.get($Version)
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Release Date" = $result.release_date;
"Contents" = $result.contents;
"Update Type" = $result.update_type;
"Severity" = $result.severity;
"Priority" = $result.priority;
"SizeGB" = [math]::Round(([int]$result.size / 1024),2)
"Reboot Required" = $result.reboot_required;
"Staged" = $result.staged;
"Description" = $result.description.args;
"Services Affected" = $result.services_will_be_stopped.service
}
$summaryResult
}
}
Function Get-VCSAUpdateStaged {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function checks for information about the staged VCSA Update.
.DESCRIPTION
Function to return details about the staged update
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Get-VCSAUpdateStaged
#>
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
try {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.staged' -Server $server.Name
$result = $systemUpdateAPI.get()
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Version" = $result.version;
"Staging Complete" = $result.staging_complete;
"Update Type" = $result.update_type;
"Severity" = $result.severity;
"Priority" = $result.priority;
"SizeGB" = [math]::Round(([int]$result.size / 1024 / 1024 / 1024),2)
"Reboot Required" = $result.reboot_required;
"Description" = $result.description.args;
}
$summaryResult
}
catch {
$e=$_
if ($e.Exception -like "*com.vmware.vapi.std.errors.not_allowed_in_current_state*") {
Write-Warning "Nothing is Staged"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthenticated *") {
Write-Warning "Session is not authenticated"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthorized*") {
Write-Warning "Session is not authorized to perform this operation"
}
else {
Write-Warning "You have encountered an error, please validate server."
}
}
}
}
Function Copy-VCSAUpdate {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function stages the specified VCSA Update.
.DESCRIPTION
Function to download and stage update
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Copy-VCSAUpdate -Version "6.7.0.20000"
#>
Param(
[parameter(Mandatory=$true)]
[String] $Version
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$results = $systemUpdateAPI.stage($Version)
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Status" = "Update is being Staged, Run Get-VCSAUpdateStaged or Get-VCSAUpdateStatus for current status."
}
$summaryResult
}
}
Function Remove-VCSAUpdate {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function removes a staged VCSA update.
.DESCRIPTION
Function to delete staged update on VCSA
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Remove-VCSAUpdate
#>
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
try {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.staged' -Server $server.Name
$result = $systemUpdateAPI.delete()
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Status" = "Staged update has been deleted"
}
$summaryResult
}
catch {
$e=$_
if ($e.Exception -like "*com.vmware.vapi.std.errors.not_allowed_in_current_state*") {
Write-Warning "Nothing is Staged"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthenticated *") {
Write-Warning "Session is not authenticated"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthorized*") {
Write-Warning "Session is not authorized to perform this operation"
}
else {
Write-Warning "You have encountered an error, please validate server."
}
}
}
}
Function Start-VCSAUpdatePrecheck {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function executues the VCSA Update prechecks.
.DESCRIPTION
Function to run built-in prechecks
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Start-VCSAUpdatePrecheck -Version "6.7.0.20000"
#>
Param(
[parameter(Mandatory=$true)]
[String] $Version
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$result = $systemUpdateAPI.precheck($Version)
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Check Time" = $result.check_time;
"Reboot Required" = $result.reboot_required;
"Estimated Time to Install" = $result.estimated_time_to_install;
"Estimated Time to Rollback" = $result.estimated_time_to_rollback;
"Questions" = $result.questions;
"Precheck Errors" = $result.issues.errors;
"Precheck Warnings" = $result.issues.warnings;
"Precheck Info" = $result.issues.info;
}
$summaryResult
}
}
Function Start-VCSAUpdateValidate {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function validates the VCSA Update .
.DESCRIPTION
Function to run built-in validation
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Start-VCSAUpdateValidate -Version "6.7.0.20000" -SSODomainPass "VMware1!"
#>
Param(
[parameter(Mandatory=$true)]
[String] $Version,
[parameter(Mandatory=$true)]
[String] $SSODomainPass
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$UserData = $systemUpdateAPI.help.validate.user_data.Create()
$UserData.add("vmdir.password",$SSODomainPass)
$result = $systemUpdateAPI.validate($Version,$UserData)
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Info" = $result.info
"Warnings" = $result.warnings
"Errors" = $result.errors
}
$summaryResult
}
}
Function Start-VCSAUpdateInstall {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function installs the VCSA Update specified.
.DESCRIPTION
Function to install VCSA Update. This requires update to be manually staged.
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Start-VCSAUpdateInstall -Version "6.7.0.20000" -SSODomainPass "VMware1!"
#>
Param(
[parameter(Mandatory=$true)]
[String] $Version,
[parameter(Mandatory=$true)]
[String] $SSODomainPass
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$UserData = $systemUpdateAPI.help.install.user_data.Create()
$UserData.add("vmdir.password",$SSODomainPass)
$result = $systemUpdateAPI.install($Version,$UserData)
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Status" = "Update Install has started. Run Get-VCSAUpdateStatus for the latest status."
}
$summaryResult
Write-Warning "During the update process your session will be disconnected. Please reconnect to your server after a few minutes."
}
}
Function Start-VCSAUpdateStageandInstall {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function stages and installs the VCSA Update specified.
.DESCRIPTION
Function to stage and install VCSA Update
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Start-VCSAUpdateStageandInstall -Version "6.7.0.20000" -SSODomainPass "VMware1!"
#>
Param(
[parameter(Mandatory=$true)]
[String] $Version,
[parameter(Mandatory=$true)]
[String] $SSODomainPass
)
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update.pending' -Server $server.Name
$UserData = $systemUpdateAPI.help.stage_and_install.user_data.Create()
$UserData.add("vmdir.password",$SSODomainPass)
$result = $systemUpdateAPI.stage_and_install($Version,$UserData)
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Status" = "Update Install has started. Run Get-VCSAUpdateStatus for the latest status."
}
$summaryResult
Write-Warning "During the update process your session will be disconnected. Please reconnect to your server after a few minutes."
}
}
Function Stop-VCSAUpdate {
<#
.NOTES
===========================================================================
Created by: David Stamen
Organization: VMware
Blog: www.davidstamen.com
Twitter: @davidstamen
===========================================================================
.SYNOPSIS
This function cancels an update task that is cancelable.
.DESCRIPTION
Function to cancel update task
.EXAMPLE
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
Stop-VCSAUpdate
#>
$servers = $Global:DefaultCisServers
foreach ($server in $servers) {
try {
$systemUpdateAPI = Get-CisService -Name 'com.vmware.appliance.update' -Server $server.Name
$results = $systemUpdateAPI.cancel()
echo $results
$summaryResult = [pscustomobject] @{
"Server" = $server.Name;
"Status" = "Task has been cancelled"
}
$summaryResult
}
catch {
$e=$_
if ($e.Exception -like "*com.vmware.vapi.std.errors.not_allowed_in_current_state*") {
Write-Warning "Current task is not cancelable"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthenticated *") {
Write-Warning "Session is not authenticated"
}
elseif ($e.Exception -like "*com.vmware.vapi.std.errors.unauthorized*") {
Write-Warning "Session is not authorized to perform this operation"
}
else {
Write-Warning "You have encountered an error, please validate server."
}
}
}
}