Skip to content

Instantly share code, notes, and snippets.

@mattmcnabb
Created January 13, 2018 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattmcnabb/dd70021db8800c6aa19a880f55fa2eb9 to your computer and use it in GitHub Desktop.
Save mattmcnabb/dd70021db8800c6aa19a880f55fa2eb9 to your computer and use it in GitHub Desktop.
Switch evaluates arbitrary scriptblocks
$TestValue = "nuffin"
switch ($TestValue)
{
"sumpin"
{
"this does not run"
}
"nuffin"
{
"This runs"
}
{$true}
{
"But this runs too"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment