Skip to content

Instantly share code, notes, and snippets.

@ElianFabian
Created May 13, 2026 08:23
Show Gist options
  • Select an option

  • Save ElianFabian/294c73f751b896b66fd16a535eaed9e4 to your computer and use it in GitHub Desktop.

Select an option

Save ElianFabian/294c73f751b896b66fd16a535eaed9e4 to your computer and use it in GitHub Desktop.
$title = "Confirmation"
$message = "Do you want to proceed?"
$options = [System.Management.Automation.Host.ChoiceDescription[]] @("&Yes", "&No")
$default = 0 # This sets 'Yes' as the default
$result = $host.ui.PromptForChoice($title, $message, $options, $default)
if ($result -eq 0) { Write-Host "You chose Yes!" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment