• Using Powershell, get reason why an operation failed

    I need to check the operation status of workflow runs using Powershell. I can use Get-QARSWorkflowInstance to determine the overall run operation status for instance:

    $Ops = Get-QARSWorkflowInstance -CretatedOn Today -Workflow $wfDn

    $Ops.Operation

    The above…