-
Notifications
You must be signed in to change notification settings - Fork 2
/
Invoke-ScriptBlockClosure.ps1
53 lines (40 loc) · 1.3 KB
/
Invoke-ScriptBlockClosure.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
##############################################################################
##
## Invoke-ScriptBlockClosure
##
## From Windows PowerShell Cookbook (O'Reilly)
## by Lee Holmes (http://www.leeholmes.com/guide)
##
##############################################################################
<#
.SYNOPSIS
Demonstrates the GetNewClosure() method on a script block that pulls variables
in from the user's session (if they are defined.)
.EXAMPLE
PS > $name = "Hello There"
PS > Invoke-ScriptBlockClosure { $name }
Hello There
Hello World
Hello There
#>
param(
## The scriptblock to invoke
[ScriptBlock] $ScriptBlock
)
Set-StrictMode -Version 3
## Create a new script block that pulls variables
## from the user's scope (if defined.)
$closedScriptBlock = $scriptBlock.GetNewClosure()
## Invoke the script block normally. The contents of
## the $name variable will be from the user's session.
& $scriptBlock
## Define a new variable
$name = "Hello World"
## Invoke the script block normally. The contents of
## the $name variable will be "Hello World", now from
## our scope.
& $scriptBlock
## Invoke the "closed" script block. The contents of
## the $name variable will still be whatever was in the user's session
## (if it was defined.)
& $closedScriptBlock