We just attempted an upgrade form powershell Universal 4.4.1 to 5.0.14 and
after the upgrade, scripts that were functioning on 4 prompting the user for
input (Yellow "Respond to Feedback"), first response works and progresses
the script but subsequent prompts still show the first prompt and will not
progress the script.
I created an example script as follows:
write-output "asking your age"
$age = read-host "enter your age"
write-output "You said you are $age years old"
write-output "Asking your gender"
$gender = read-host "enter your gender"
write-output "You said you are a $gender"
The user can enter their age. and the script reads the response correctly, but
when it progresses to gender and the user clicks the yellow "respond to
feedback" the previous prompt "enter your age" is returned still showing the
user's initial response.
Do I need to use a different method to gather user feedback on version 5?
Product: PowerShell Universal
Version: 5.0.14
Got a Response from support, this is a known issue that will be resolved in 5.0.15 releasing soon.
5.0.15 was released about 30-40 minutes ago, for the record.