The parameter ErrorAction of Invoke-Expression does not affect processing
of errors in invoked expressions. These errors are processed according to the
current $ErrorActionPreference.
Scripts
- Test-1.Continued.ps1 uses
-ErrorAction Stopbut the script continues on an error. - Test-2.Stopped.ps1 uses
-ErrorAction Continuebut the script stops on an error.
- Stack Overflow ErrorAction is ignored in favour of ErrorActionPreference