Jakob,
1. If a WFA command execution reaches a "failed" state, the workflow execution just stops there. So there is no way to ignore a WFA command failure and proceed to workflow execution. It could be an seen as an improvement for WFA, but it needs to considered how wide this use case can be. In most cases it not only would be desired but even required to stop execution right there because of dependency.
2. If you want the failure of a cmdlet in a wfa command to be ignored and proceed to execute with the remaining section of the command code and also failing the WFA command in the end, this can be done using write-error.
See the below simple WFA command code:
=======
param (
[parameter(Mandatory=$true, HelpMessage="Message to print")]
[string]$Message
)
try
{
# Call a non-existent cmdlet which will cause failure
fake-cmdlet
}
catch
{
Write-Error -Message "This fake-cmdlet is causing the failure"
}
# execution still proceeds and WFA command execution will fail in the end giving the .
Get-WFALogger -INFO -message "Message is : $Message"
======
Write-Error will raise a command execution failure, but will not stop execution right there. So the proceeding section of the command ( Get-WFALogger in our case) will still get executed and the end result of command execution will have raised a command faliure.
This can be used to solve point (1) but in a crude way, if you design your command to do it.
If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.