Hello everyone,
I would like a trigger to fire when:
1. the last determined value of Item-A is 1
and
2. the word FileRenameOperation does not appear in the last determined string of Item-B.
The expression below would work if only FileRenameOperation was present in the string of the item.
Unfortunately, there is more text before or after it.
I'm sure you can use REGEX with a Wildcard here, but I don't have the parameters for it.
Does anyone have any ideas?
Thank you very much!
Daniel​
I would like a trigger to fire when:
1. the last determined value of Item-A is 1
and
2. the word FileRenameOperation does not appear in the last determined string of Item-B.
The expression below would work if only FileRenameOperation was present in the string of the item.
Unfortunately, there is more text before or after it.
I'm sure you can use REGEX with a Wildcard here, but I don't have the parameters for it.
Does anyone have any ideas?
Code:
last(/t_task_app_mon_windowsupdate/Winupdates.RebootRequired,#1)=1 and last(/t_task_app_mon_windowsupdate/Winupdates.RebootRequiredReason,#1) <> "FileRenameOperation"
Daniel​
Comment