Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phatmandrake/0cb815ca3b3797a7b5ed5638103d5406 to your computer and use it in GitHub Desktop.
Save phatmandrake/0cb815ca3b3797a7b5ed5638103d5406 to your computer and use it in GitHub Desktop.
$Host.EnterNestedPrompt() - End Block Behavior
function f {
[Cmdletbinding()]
param([switch]$intervene)
begin{
$abc = 123
}
process{
}
end{
if ($intervene.IsPresent){
$Host.EnterNestedPrompt()
}
Write-Host "`$abc has value '$abc'"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment