Thanks for the Action script, but when I am running it, I am still getting the errors like this Command failed (Relevance substitution failed)wait //Clean-up Temp files, this should not need to change delete "__Download/{parameter "_app_file_name_PSE"}". Not only for this single fixlet, I am facing the same problem for 5 to 6 different kind of fixlets on Batch files.
I don’t understand why it is not getting fixed. Can you help in fixing my fixlet, Thanks.
Is it possible that your install.cmd is opening a new command session? If so, I don’t think the variables will survive and that’s why you are getting the relevance substitution error.
It is not opening any thing, not even log file is creating. In the middle of the process it is showing the fixlet is not relevant and process is getting failed.
Paste in your action script, and be sure to use the blockquote (highlight it and select the </> icon in the Wiki editor).
If your line really is
wait //Clean-up Temp files, this should not need to change
delete "_Download/{parameter "app_file_name_PSE"}"
then that’s an error. The “wait” command requires a parameter - the command to execute. You can’t have
wait //comment
any more than you can have
wait
by itself.
Maybe you intend something like
wait "__Download/{parameter "app_file_name_PSE"}"
//Clean-up Temp files, this should not need to change
delete "__Download/{parameter "app_file_name_PSE"}"