Skip to content

Instantly share code, notes, and snippets.

@DBremen
Created September 10, 2015 08:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DBremen/778414455f932e1f9ac8 to your computer and use it in GitHub Desktop.
Save DBremen/778414455f932e1f9ac8 to your computer and use it in GitHub Desktop.
Usage of built-in PromptForChoice
$Title = "Title"
$Info = "Pick Something!"
$options = echo Option1 Option2 Option3
$defaultchoice = 2
$selected = $host.UI.PromptForChoice($Title , $Info , $Options, $defaultchoice)
$options[$selected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment