Created
May 13, 2026 08:23
-
-
Save ElianFabian/294c73f751b896b66fd16a535eaed9e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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