Skip to content

Instantly share code, notes, and snippets.

@dsolodow
Created November 20, 2018 19:04
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 dsolodow/204d469499eed3d3c2d117a5e980bf33 to your computer and use it in GitHub Desktop.
Save dsolodow/204d469499eed3d3c2d117a5e980bf33 to your computer and use it in GitHub Desktop.
Randomly select an IT pro answer.
Function Get-WheelAnswer
{
[string[]]$wheel = (
"No.",
"Are you sure it's plugged in?",
"Move... I'll do it",
"Yes, just click OK",
"No, it's a scam, just delete it",
"The problem is on your end.",
"Yes, it's gone forever, that's what empty trash does.",
"Have you tried turning it off and back on again?"
)
$answer = Get-Random -Maximum $wheel.Count
Write-Host $wheel[$answer] -ForegroundColor Green
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment