In v2 I have a profile script that sets aliases and starts programs after asking:
$app = Read-Host -prompt "Would you like to start daily use apps? [Anything but no starts apps]"
if($app -eq "no")
{
Write-Host "Good Morning"
}
else
{
<Code to start apps>
}
After upgrading to v 3 the ise and cli both seem to choke on this read-host question
Why the change? How can I implement in v 3?
Thank you -