Edit

Share via


about_Script_Blocks

Short description

Defines what a scriptblock is and explains how to use scriptblocks in the PowerShell programming language.

Long description

In the PowerShell programming language, a scriptblock is a collection of statements or expressions that can be used as a single unit. The collection of statements can be enclosed in braces ({}), defined as a function, or saved in a script file. A scriptblock can return values and accept parameters and arguments. Scriptblocks create a new scope for variables.

Syntactically, a scriptblock is a statement list in braces, as shown in the following syntax:

{<statement list>}

A scriptblock returns the output of all the commands in the scriptblock, either as a single object or as an array.

You can also specify a return value using the return keyword. The return keyword doesn't affect or suppress other output returned from your scriptblock. However, the return keyword exits the scriptblock at that line. For more information, see about_Return.

Like functions, a scriptblock can include parameters. Use the param keyword to assign named parameters, as shown in the following syntax:

{
    param ([type]$Parameter1 [,[type]$Parameter2])
    <statement list>
}

Like functions, scriptblocks can include the dynamicparam statement, and the begin, process, and end statements. For more information, see about_Functions and about_Functions_Advanced.

Important

Not all blocks enclosed in braces are scriptblocks. For example, the commands in a for loop or an if statement are enclosed in a statement block. Statement blocks do not create a new scope for variables, support parameters of the other statement keywords.

Using scriptblocks

A scriptblock is an instance of a Microsoft .NET Framework type System.Management.Automation.ScriptBlock. Commands can have scriptblock parameter values. For example, the Invoke-Command cmdlet has a ScriptBlock parameter that takes a scriptblock value, as shown in this example:

Invoke-Command -ScriptBlock { Get-Process }
Handles  NPM(K)    PM(K)     WS(K) VM(M)   CPU(s)     Id ProcessName
-------  ------    -----     ----- -----   ------     -- -----------
999          28    39100     45020   262    15.88   1844 communicator
721          28    32696     36536   222    20.84   4028 explorer
...

Invoke-Command can also execute scriptblocks that have parameter blocks. Parameters are assigned by position using the ArgumentList parameter.

Invoke-Command -ScriptBlock { param($p1, $p2)
"p1: $p1"
"p2: $p2"
} -ArgumentList "First", "Second"
p1: First
p2: Second

The scriptblock in the preceding example uses the param keyword to create a parameters $p1 and $p2. The string "First" is bound to the first parameter ($p1) and "Second" is bound to ($p2).

For more information about the behavior of ArgumentList, see about_Splatting.

You can use variables to store and execute scriptblocks. The example below stores a scriptblock in a variable and passes it to Invoke-Command.

$a = { Get-Service BITS }
Invoke-Command -ScriptBlock $a
Status   Name               DisplayName
------   ----               -----------
Running  BITS               Background Intelligent Transfer Ser...

The call operator is another way to execute scriptblocks stored in a variable. Like Invoke-Command, the call operator executes the scriptblock in a child scope. The call operator can make it easier for you to use parameters with your scriptblocks.

$a ={ param($p1, $p2)
"p1: $p1"
"p2: $p2"
}
&$a -p2 "First" -p1 "Second"
p1: Second
p2: First

You can store the output from your scriptblocks in a variable using assignment.

PS>  $a = { 1 + 1}
PS>  $b = &$a
PS>  $b
2
PS>  $a = { 1 + 1}
PS>  $b = Invoke-Command $a
PS>  $b
2

For more information about the call operator, see about_Operators.

Using delay-bind scriptblocks with parameters

A typed parameter that accepts pipeline input enables use of delay-bind scriptblocks on the parameter. You can use delay-bind scriptblocks as a shorthand to define parameters for a pipelined cmdlet before executing it.

Within the delay-bind scriptblock, you can reference the piped in object using the pipeline variable $_.

# Both examples rename config.log to old_config.log
# Without delay-binding
dir config.log | ForEach-Object -Process {
  Rename-Item -Path $_ -NewName "old_$($_.Name)"
}
# With delay-binding
dir config.log | Rename-Item -NewName { "old_$($_.Name)" }

In more complex cmdlets, delay-bind scriptblocks allow the reuse of one piped in object to populate other parameters.

Notes on delay-bind scriptblocks as parameters:

  • You must explicitly specify any parameter names you use with delay-bind scriptblocks.

  • The parameter must not be untyped, and the parameter's type can't be [scriptblock] or [Object].

  • You receive an error if you use a delay-bind scriptblock without providing pipeline input.

    Rename-Item -NewName {$_.Name + ".old"}
    
    Rename-Item : Cannot evaluate parameter 'NewName' because its argument is
    specified as a scriptblock and there is no input. A scriptblock cannot
    be evaluated without input.
    At line:1 char:23
    +  Rename-Item -NewName {$_.Name + ".old"}
    +                       ~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : MetadataError: (:) [Rename-Item],
          ParameterBindingException
        + FullyQualifiedErrorId : ScriptBlockArgumentNoInput,
          Microsoft.PowerShell.Commands.RenameItemCommand
    

See also