In a Post process command file, I need to check two arguments before preforming an action.
I need to check if the backup job failed (%6==2) and I need to also check the number of retries (%4==10).
I have tried:
IF %6==2(IF %4==10( do action ))
And:
IF %6==2 && %4==10( do action )
But neither work.
How do I test multiple arguments in a Post process?