This is a test website to try out GitHub and Git Bash
16 Mar 2025 - jhunter
help about_Script_Blocks
$variable1 = { $scriptblock1 }
The curly brackets {
and }
(also known as “braces”) can be used to define a block of script inside a PowerShell variable.
This is handy if you want to:
In the PowerShell, define a block of script like in this example:
$year = 2025
$myscriptblock1 = {get-childitem | Where-Object { (get-date($_.lastwritetime)).year -eq $year }}
Note that this is not a string of text. Verify this fact with the following command:
PS C:\> $myscriptblock1 | Get-Member
TypeName : System.Management.Automation.ScriptBlock
<output omitted>
Here are two handy ways to run a block of script:
Use dot notation:
. $myscriptblock1
Use the ìnvoke-command
command:
invoke-command -scriptblock $myscriptblock1