Home > front end >  Did echo change in Powershell with Set-ExecutionPolicy recently?
Did echo change in Powershell with Set-ExecutionPolicy recently?

Time:01-30

Did something change in powershell regarding the ECHO pipe? I have been using it for a long while. I get an input error that its complaining about format..... Curious if something change in since the 5.1 release..

echo Y | Set-Executionpolicy -ExecutionPolicy Unrestricted

CodePudding user response:

Aarin,

Do it the PowerShell way:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force
  •  Tags:  
  • Related