Skip to content

Instantly share code, notes, and snippets.

@PartTimeLegend
Created July 14, 2017 10:02
Show Gist options
  • Select an option

  • Save PartTimeLegend/3eb5dbeb2f13afbdb7b6261ce86e11bb to your computer and use it in GitHub Desktop.

Select an option

Save PartTimeLegend/3eb5dbeb2f13afbdb7b6261ce86e11bb to your computer and use it in GitHub Desktop.
Function IIf($If, $IfTrue, $IfFalse) {
If ($If) {If ($IfTrue -is "ScriptBlock") {&$IfTrue} Else {$IfTrue}}
Else {If ($IfFalse -is "ScriptBlock") {&$IfFalse} Else {$IfFalse}}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment