forked from jagilber/powershellScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-az-vmss-run-command.ps1
538 lines (431 loc) · 18.8 KB
/
azure-az-vmss-run-command.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
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
<#
.SYNOPSIS
powershell script to invoke azure rm invoke-azvmssvmruncommand command with output on azure vm scaleset vms
.DESCRIPTION
powershell script to invoke azure rm invoke-azvmssvmruncommand command with output on azure vm scaleset vms
Invoke-azVmssVMRunCommand -ResourceGroupName {{resourceGroupName}} -VMScaleSetName{{scalesetName}} -InstanceId {{instanceId}} -ScriptPath c:\temp\test1.ps1 -Parameter @{'name' = 'patterns';'value' = "{{certthumb1}},{{certthumb2}}"} -Verbose -Debug -CommandId $commandId
Get-azVMRunCommandDocument -Location westus | select ID, OSType, Label
invoke-webRequest "https://raw.githubusercontent.com/jagilber/powershellScripts/master/azure-az-vmss-run-command.ps1" -outFile "$pwd\azure-az-vmss-run-command.ps1"
.NOTES
File Name : azure-az-vmss-run-command.ps1
Author : jagilber
Version : 191012
History :
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script 'reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl' -concurrent
query memory dump settings concurrently
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script 'reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v CrashDumpEnabled /t REG_DWORD /d 1 /f'
set memory dump settings to complete memory dump (requires reboot) on specified nodes
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script 'shutdown /r /t 0'
restart specified nodes
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script '& {
if(((get-itemproperty HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl CrashDumpEnabled).CrashDumpEnabled) -ne 1) {
write-host "set to complete dump. restarting"
set-itemproperty HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl CrashDumpEnabled 1
shutdown /d p:4:2 /c "enable complete dump" /r /t 1
}
else {
write-host "already set to complete dump. returning"
}
}'
set memory dump settings to complete memory dump and reboot nodes specified if required. do not run concurrently.
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script '& {
$file = "dotnet-runtime-3.0.0-win-x64.exe"
$downloadUrl = "https://download.visualstudio.microsoft.com/download/pr/b3b81103-619a-48d8-ac1b-e03bbe153b7c/566b0f50872164abd1478a5b3ec38ffa/$file"
invoke-webRequest $downloadUrl -outFile "$pwd/$file"
# /install /repair /uninstall /layout /passive /quiet /norestart /log
start-process -wait -filePath ".\dotnet-runtime-3.0.0-win-x64.exe" -argumentList "/norestart /quiet /install /log `"$pwd/$file.log`""
type "$pwd/$file.log"
}' -resourceGroup sfcluster -vmssName nt0 -instanceId 0-4 -concurrent
install .net core 3.0 without restart concurrently to nodes 0-4
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script c:\temp\test.ps1
prompt for resource group, vm scaleset name, and instance ids to run powershell script c:\temp\test.ps1 on
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script c:\temp\test.ps1 -resourceGroup testrg
prompt for vm scaleset name, and instance ids to run powershell script c:\temp\test.ps1 on
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script c:\temp\test.ps1 -resourceGroup testrg -vmssname nt0
prompt for instance ids to run powershell script c:\temp\test.ps1 on
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -script c:\temp\test.ps1 -resourceGroup testrg -vmssname nt0 -instanceid 0
run powershell script c:\temp\test.ps1 on instance id 0
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -resourceGroup testrg -vmssname nt0 -instanceid 0
run test powershell script on instance id 0
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -listCommandIds
list all possible commandIds available for command
.EXAMPLE
.\azure-az-vmss-run-command.ps1 -removeExtension
remove the invoke run command extension that is required for running commands.
it is *not* required to remove extension
.PARAMETER resourceGroup
name of resource group containing vm scale set. if not provided, script prompt for input.
.PARAMETER vmssName
name of vm scale set. if not provided, script prompt for input.
.PARAMETER instanceId
string array of instance id(s). if not provided, script prompt for input.
examples: 0 or 0-2 or 0,1,2
.PARAMETER script
path and file name to script to invoke on vm scale set nodes
.PARAMETER parameters
hashtable of script arguments in format of @{"name" = "value"}
example: @{"adminUserName" = "cloudadmin"}
.PARAMETER jsonOutputFile
path and file name of json output file to populate with results.
.PARAMETER commandId
optional commandId to invoke other than the default of RunCommand. use -listCommandIds argument for list of commandIds available.
.PARAMETER removeExtension
switch to invoke run command, an extension is dynamically installed. this may or may not be already present and causes no harm.
after completing all commands, the extension can be removed with -removeExtension switch
.PARAMETER listCommandIds
switch to list optional commandIds and return
.PARAMETER force
switch to force invocation of command on vm scaleset node regardless of provisioningstate. Any state other than 'successful' may fail.
.PARAMETER concurrent
switch to run command against multiple nodes concurrently. default is single node at a time.
WARNING: running jobs concurrently on scalesets such as service fabric where there are minimum node requirements can cause an outage if the node is restarted.
.LINK
https://github.com/jagilber/powershellScripts/blob/master/azure-az-vmss-run-command.ps1
#>
[CmdletBinding()]
param(
[string]$resourceGroup,
[string]$vmssName,
[string]$instanceId,
[string]$script, # script string content or file path to script
[hashtable]$parameters = @{ }, # hashtable @{"name" = "value";}
[string]$jsonOutputFile,
[string]$commandId = "RunPowerShellScript",
[switch]$removeExtension,
[switch]$listCommandIds,
[string]$location = "westus",
[switch]$force,
[switch]$concurrent
)
$PSModuleAutoLoadingPreference = 2
$ErrorActionPreference = "silentlycontinue"
$global:jobs = @{ }
$global:joboutputs = @{ }
$tempScript = ".\tempscript.ps1"
$removeCommandId = "RemoveRunCommandWindowsExtension"
$global:startTime = get-date
$global:success = 0
$global:fail = 0
$global:extensionInstalled = 0
$global:extensionNotInstalled = 0
$global:pscommand = $commandId -ieq "RunPowerShellScript"
function main() {
$error.Clear()
get-job | remove-job -Force
if (!(check-module)) {
return
}
if (!(Get-azResourceGroup)) {
connect-azaccount
if ($error) {
return
}
}
if ($concurrent) {
write-warning "running jobs concurrently on scalesets with minimum node requirements such as service fabric, can cause an outage if the node is restarted from command being run!"
write-warning "ctrl-c now if this is incorrect"
}
if ($listCommandIds) {
Get-azVMRunCommandDocument -Location $location | Select-Object ID, OSType, Label
return
}
if ($pscommand -and !$script) {
Write-Warning "using test script. use -script and -parameters arguments to supply script and parameters"
$script = node-psTestScript
}
if (!$resourceGroup) {
$nodePrompt = $true
$count = 1
$number = 0
$resourceGroups = Get-azResourceGroup
foreach ($rg in @($resourceGroups)) {
write-host "$($count). $($rg.ResourceGroupName)"
$count++
}
$number = [convert]::ToInt32((read-host "enter number of the resource group to query or ctrl-c to exit:"))
if ($number -le $count) {
$resourceGroup = $resourceGroups[$number - 1].ResourceGroupName
write-host $resourceGroup
}
}
$scalesets = Get-azVmss -ResourceGroupName $resourceGroup
if (!$vmssName) {
$nodePrompt = $true
$number = 0
$count = 1
foreach ($scaleset in @($scalesets)) {
write-host "$($count). $($scaleset.Name)"
$count++
}
$number = [convert]::ToInt32((read-host "enter number of the scaleset to query or ctrl-c to exit:"))
if ($number -le $count) {
$vmssName = $scalesets[$number - 1].Name
write-host $vmssName
}
}
$scaleset = get-azvmss -ResourceGroupName $resourceGroup -VMScaleSetName $vmssName
$maxInstanceId = $scaleset.Sku.Capacity
write-host "$vmssName capacity: $maxInstanceId (0 - $($maxInstanceId - 1))"
if (!$instanceId) {
$instanceIds = generate-list "0-$($maxInstanceId - 1)"
if ($nodePrompt) {
$numbers = read-host "enter 0 based, comma separated list of number(s), or number range of the nodes to invoke script:"
if ($numbers) {
$instanceIds = generate-list $numbers
}
}
}
else {
$instanceIds = generate-list $instanceId
}
write-host $instanceIds
write-host "checking provisioning states"
$instances = @(Get-azVmssVM -ResourceGroupName $resourceGroup -VMScaleSetName $vmssName -InstanceView)
write-host "$($instances.InstanceView.Statuses | fl * | out-string)"
foreach ($instance in $instances) {
if (($instance.InstanceView.Statuses.DisplayStatus -inotcontains "provisioning succeeded" `
-or $instance.InstanceView.Statuses.DisplayStatus -inotcontains "vm running") `
-and !$force) {
Write-Warning "not all nodes are in 'succeeded' provisioning state or 'vm running' so command may fail. returning. use -force to attempt command regardless of provisioning state."
return
}
}
if ($pscommand -and !(test-path $script)) {
out-file -InputObject $script -filepath $tempscript -Force
$script = $tempScript
}
if ($removeExtension) {
$commandId = $removeCommandId
}
$result = run-vmssPsCommand -resourceGroup $resourceGroup `
-vmssName $vmssName `
-instanceIds $instanceIds `
-script $script `
-parameters $parameters
write-host $result
$count = 0
monitor-jobs
if ((test-path $tempScript)) {
remove-item $tempScript -Force
}
if ($jsonOutputFile) {
write-host "saving json to file $jsonOutputFile"
#out-file -InputObject ($global:joboutputs | ConvertTo-Json) -filepath $jsonOutputFile -force
($global:joboutputs | convertto-json).replace("\r\n", "").replace("\`"", "`"").replace("`"{", "{").replace("}`"", "}") | out-file $jsonOutputFile -Force
}
$global:joboutputs | fl *
write-host "finished. output stored in `$global:joboutputs"
write-host "total fail:$($global:fail) total success:$($global:success)"
write-host "total time elapsed:$(((get-date) - $global:startTime).TotalMinutes.ToString("0.0")) minutes"
write-host "optionally use -removeExtension to remove runcommand extension or reset."
if ($error) {
return 1
}
}
function check-module() {
$error.clear()
get-command Invoke-azVmssVMRunCommand -ErrorAction SilentlyContinue
if ($error) {
$error.clear()
write-warning "Invoke-azVmssVMRunCommand not installed."
if ((read-host "is it ok to install latest az?[y|n]") -imatch "y") {
$error.clear()
install-module az.accounts
install-module az.resources
install-module az.compute
import-module az.accounts
import-module az.resources
import-module az.compute
}
else {
return $false
}
if ($error) {
return $false
}
}
return $true
}
function generate-list([string]$strList) {
$list = [collections.arraylist]@()
foreach ($split in $strList.Replace(" ", "").Split(",")) {
if ($split.contains("-")) {
[int]$lbound = [int][regex]::match($split, ".+?-").value.trimend("-")
[int]$ubound = [int][regex]::match($split, "-.+").value.trimstart("-")
while ($lbound -le $ubound) {
[void]$list.add($lbound)
$lbound++
}
}
else {
[void]$list.add($split)
}
}
return $list
}
function monitor-jobs() {
$originalJobsCount = (get-job).count
$minCount = 1
$count = 0
while (get-job) {
foreach ($job in get-job) {
write-verbose ($job | fl * | out-string)
if ($job.state -ine "running") {
write-host ($job | fl * | out-string)
if ($job.state -imatch "fail" -or $job.statusmessage -imatch "fail") {
[void]$global:joboutputs.add(($global:jobs[$job.id]), ($job | ConvertTo-Json))
$global:fail++
}
else {
[void]$global:joboutputs.add(($global:jobs[$job.id]), ($job.output | ConvertTo-Json))
$global:success++
}
write-host ($job.output | ConvertTo-Json)
$job.output
Remove-Job -Id $job.Id -Force
}
else {
$jobInfo = Receive-Job -Job $job
if ($jobInfo) {
write-host ($jobInfo | fl * | out-string)
}
}
}
if ($count -ge 60) {
write-host $minCount
$minCount++
$count = 0
}
write-host "." -NoNewline
$instances = Get-azVmssVM -ResourceGroupName $resourceGroup -vmscalesetname $vmssName -InstanceView
write-verbose "$($instances | convertto-json -WarningAction SilentlyContinue)"
$currentJobsCount = (get-job).count
$activity = "$($commandId) $($originalJobsCount - $currentJobsCount) / $($originalJobsCount) vm jobs completed:"
$status = "extension installed:$($global:extensionInstalled) not installed:$($global:extensionNotInstalled) fail results:$($global:fail)" `
+ " success results:$($global:success) time elapsed:$(((get-date) - $global:startTime).TotalMinutes.ToString("0.0")) minutes"
$percentComplete = ((($originalJobsCount - $currentJobsCount) / $originalJobsCount) * 100)
Write-Progress -Activity $activity -Status $status -PercentComplete $percentComplete
Start-Sleep -Seconds 1
$count++
}
}
function node-psTestScript() {
return "# $(get-date)
wmic qfe;
ipconfig;
hostname;"
}
function run-vmssPsCommand ($resourceGroup, $vmssName, $instanceIds, [string]$script, $parameters) {
write-host "first time only can take up to 45 minutes if the run command extension is not installed.
subsequent executions take between a 2 and 30 minutes..." -foregroundcolor yellow
foreach ($instanceId in $instanceIds) {
$instance = get-azvmssvm -ResourceGroupName $resourceGroup -VMScaleSetName $vmssName -InstanceId $instanceId -InstanceView
write-host "instance id: $($instanceId)`r`n$($instance.VmAgent.ExtensionHandlers | convertto-json)" -ForegroundColor Cyan
if (!($instance.VmAgent.ExtensionHandlers.Type -imatch "RunCommandWindows")) {
Write-Warning "run command extension not installed."
$global:extensionNotInstalled++
if ($removeExtension) {
continue
}
Write-Warning "this install extension automatically which take additional time."
}
else {
$global:extensionInstalled++
}
if ($removeExtension) {
$script = $null
$parameters = $null
write-host "Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-CommandId $commandId `
-AsJob"
$response = Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-CommandId $commandId `
-AsJob
}
elseif($pscommand) {
if ($parameters.Count -gt 0) {
write-host "Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-Parameter $parameters `
-CommandId $commandId `
-AsJob"
$response = Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-Parameter $parameters `
-CommandId $commandId `
-AsJob
}
else {
write-host "Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-CommandId $commandId `
-AsJob"
$response = Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-CommandId $commandId `
-AsJob
}
}
elseif ($parameters.Count -gt 0) {
write-host "Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-Parameter $parameters `
-CommandId $commandId `
-AsJob"
$response = Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-Parameter $parameters `
-CommandId $commandId `
-AsJob
}
else {
write-host "Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-CommandId $commandId `
-AsJob"
$response = Invoke-azVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-CommandId $commandId `
-AsJob
}
if (!$concurrent) {
monitor-jobs
}
if ($response) {
$global:jobs.Add($response.Id, "$resourceGroup`:$vmssName`:$instanceId")
write-host ($response | fl * | out-string)
}
else {
write-warning "no response from command!"
$global:fail++
}
}
}
main