functions/utils/Use-If.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function Use-If {
    [CmdletBinding()]
    param (
        [parameter(Mandatory = $false, 
            ValueFromPipeline = $true)]
        [bool]$Condition,
        [parameter(Mandatory = $true)]
        [scriptblock]$IfTrue,
        [parameter(Mandatory = $false)]
        [scriptblock]$IfFalse
    )

    if ($Condition) {
        if ($null -ne $IfTrue) {
            Invoke-Command -ScriptBlock $IfTrue
        }
    }
    else {
        if ($null -ne $IfFalse) {
            Invoke-Command -ScriptBlock $IfFalse
        }
    }
}