-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript Block Demo.ps1
396 lines (303 loc) · 6.31 KB
/
Script Block Demo.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
###############################################################################
##
## Scriptblocks - PowerShell Summit 2018
##
## Richard Siddaway
##
## All code is made available as is without
## any warranty or guarantee
##
###############################################################################
###############################################################################
## Script block basics
##
## script block is list of statements in {}
$sb = {
$x = 1
$y = 2
$x + $y
}
## if use variable - just see code
$sb
## run script block
Invoke-Command -ScriptBlock $sb
## can also use call operator &
& $sb
## will use & from now on
## less typing :-)
## basic function
## only difference is name
## and function key word
function f1 {
$x = 1
$y = 2
$x + $y
}
## usually just use function name
f1
## call operator works
## but not Invoke-Command
& f1
## digging into function
Get-Item -Path function:\f1 | Format-List *
## Notice scriptblock !!!
Get-Item -Path function:\f1 | select name
Get-Item -Path function:\f1 | Format-List Scriptblock
##
## YOU CAN CHANGE THE FUNCTION
##
$function:f1 = {
$x = 2
$y = 3
$x * $y
}
f1
## lets dig into script blocks
$sb | Get-Member
## another way to run script blocks
$sb.Invoke()
## assign results to variable
$a = & $sb
$a
## or
$b = $sb.Invoke()
$b
## parameters into a script block
$sb = {
param (
[int]$x = 1,
[int]$y = 2
)
$x + $y
}
## default parameters work
& $sb
& $sb 3 5
## or
Invoke-Command -ScriptBlock $sb -ArgumentList 3,5
###############################################################################
## compare with function
## script block CAN'T do this
function f1 ([int]$x = 1, [int]$y = 2) {
$x + $y
}
f1
## function better with param block
function f1 {
param (
[int]$x = 1,
[int]$y = 2
)
$x + $y
}
f1
## script block can't do this
f1 -x 3 -y 5
## script block CAN use parameter validation
$sb = {
param (
[ValidateRange(1,5)]
[int]$x = 1,
[ValidateRange(2,6)]
[int]$y = 2
)
$x + $y
}
& $sb
& $sb 4 7
## script block CAN use mandatory parameters
$sb = {
[CmdletBinding()]
param (
[ValidateRange(1,5)]
[int]$x = 1,
[Parameter(Mandatory=$true)]
[ValidateRange(2,6)]
[int]$y = 2
)
$x + $y
}
& $sb 4 5
& $sb 4
## script block is anonymous function
## some things such as parameter sets
## don't make sense for script block
###############################################################################
##
## How do you handle scope
## in script blocks
##
##
## functions scan up scope
##
$x = 5
function f1 {
$y = 6
$x + $y
}
f1
##
## invoked script blocks do the same
##
$sb = {
$y = 6
$x + $y
}
& $sb
Invoke-Command -ScriptBlock $sb
##
## script blocks in jobs
##
Start-Job -Name j1 -ScriptBlock $sb
Wait-Job -Name j1
Receive-Job -Name j1
Get-Job | Remove-Job
##
## to see what's happening
##
$sb = {
"`$x = $x"
$y = 6
$x + $y
}
Start-Job -Name j1 -ScriptBlock $sb
Wait-Job -Name j1
Receive-Job -Name j1
Remove-Job -Name j1
##
## $x not in context
## $using: added in PowerShell v3
##
$sb = {
"`$x = $using:x"
$y = 6
$using:x + $y
}
Start-Job -Name j1 -ScriptBlock $sb
Wait-Job -Name j1
Receive-Job -Name j1
Remove-Job -Name j1
##
## Alternative is to
## use parameters
$sb = {
param ( $x)
$y = 6
$x + $y
}
Start-Job -Name j1 -ScriptBlock $sb -ArgumentList $x
Wait-Job -Name j1
Receive-Job -Name j1
Remove-Job -Name j1
###############################################################################
##
## when remoting variables defined in remote session
## script block runs in own scope
##
$x = 5
$sb = {
"`$x = $x"
$y = 6
$x + $y
}
Invoke-Command -ComputerName W16AS01 -ScriptBlock $sb
$sb = {
"`$x = $using:x"
$y = 6
$using:x + $y
}
Invoke-Command -ComputerName W16AS01 -ScriptBlock $sb
##
## NONEWSCOPE
## only if no session or computername
##
$sb = {
"`$x = $x"
$y = 6
$x + $y
}
Invoke-Command -ScriptBlock $sb -NoNewScope
Invoke-Command -ComputerName W16AS01 -ScriptBlock $sb -NoNewScope
###############################################################################
##
## script blocks in split
##
## want to split on commas but leave in pairs
$str = 'Jack,Jill,Bill,Ben,Eric,Ernie,Cagney,Lacey'
$count=@(0)
$count
$str -split {$_ -eq ',' -AND ++$count[0] % 2 -eq 0}
$count
############################################################################
## DYNAMIC MODULES
##
## script module - when want persistant resources
## NOT exposed at global level
$sb = {
$c = 0
function Get-NextCount {
$script:c++
$script:c
}
function Reset-Count {
$script:c = 0
}
}
$dm = New-Module -ScriptBlock $sb
Get-NextCount
1..10 | foreach { Get-NextCount}
Reset-Count
Get-NextCount
## view module
## note name
Get-Module
$dm | Format-List
$dm | Import-Module
Get-Module
## explicit name
## and force import
Get-Module -Name '*dynamic*' | Remove-Module
$dm = New-Module -Name Summit2018 -ScriptBlock $sb|
Import-Module
Get-Module
Get-Command -Module Summit2018
Remove-Module -Name Summit2018
###############################################################################
##
## closure = inverse of object
## closure = function with data attached
## object = data with methods
##
## useful when want to change something
## post function definition
function New-Counter {
param ([int]$increment = 1)
$count=0
$sb = {
$script:count += $increment
$count
}
$sb.GetNewClosure()
}
$c1 = New-Counter
$c1 | Get-Member
& $c1
& $c1
& $c1
$c1 | Get-Member
$c2 = New-Counter 2
& $c2
& $c2
& $c2
& $c1
& $c1
##
## new closure creates a dynamic module &
## all variables in caller's scope are copied into the new module
##
##
## when module loaded exported functions are closures
## bound to module object. Closures are assigned to
## names of functions to import
## go to proxy demo
## run out-default BEFORE demo !!