Forum Discussion

ray hogan's avatar
ray hogan
Copper Contributor
Feb 02, 2017
Solved

Azure Function Apps - PowerShell's ErrorActionPreference

By default the environment's $ErrorActionPreference is set to 'Continue'. When a cmdlet throws an error the script will continue.   I want it to 'Stop' and get caught in the catch of my try-catch b...
  • ray hogan's avatar
    Feb 03, 2017

    I was able to get it to behave by using:

     

    $global:erroractionpreference = 1

    Instead of

     

    $ErrorActionPreference = 'Stop'

    :robotlol: