* ContinueOnError was scoped to ignore non-zero exit codes. It now operates at the function level and will allow continuing if an unknown exception occurs.
* To ignore specific exit codes, use the new IgnoreExitCodes parameter, using * to ignore all.
* To stop the script if the process fails, use the ExitOnProcessFailure parameter.
* Execute-Process would fail if an exception occurred, even when ContinueOnError was specified. It now ignores exceptions as expected.
Can you please explain in more detail what the first item in the change log quoted above means?
I was leveraging Execute-Process with -continueonError $true and it still errored out using 3.8.2. I had to add the -ignoreexitcodes switch before it would operate properly so am curious on what the behavior should be?