I\'m trying to take user input and before proceeding I would like get a message on screen and than a confirmation, whether user wants to proceed or not. I\'m using the follo
For when you want a 1-liner
while( -not ( ($choice= (Read-Host "May I continue?")) -match "y|n")){ "Y or N ?"}