When I try to run the following action through relevance debugger, I get the error " Evaluation Error: Relevance Clauses must be surrounded by { and } guards. Can you tell me where these should be put on my action line bellow?
Thanks in advance.
wait “{pathname of system folder & “\msiexec.exe”}” /X “{FF11005D-CBC8-45D5-A288-25C7BB304121}” /qn /norestart
The error is in the second set of braces. The Fixlet Debugger realizes that
FF11005D-CBC8-45D5-A288-25C7BB30412
is not proper relevance, but maybe it’s saying it in an odd way. You need to escape out the second set so that the braces will be treated as braces, not as relevance substitution; doubling the first brace should be sufficient:
wait “{pathname of system folder & “\msiexec.exe”}” /X “{{FF11005D-CBC8-45D5-A288-25C7BB304121}” /qn /norestart