June 14, 200521 yr Hello, I'm Newbie and think the WPI ist a great program for UWXP.But I have already a question. I have progA, progB and progC. ProgA excludes progB. ProgB excludes progA. ProgC is dependent of progA or prog B. How can I manage this?
June 20, 200521 yr Basing myself on the help file on the wpi site:for multiple exclusion, for example PC excludes PA and PB, you can useexcl[PC]=PA,PBso I think if you want to make PC dependant of PA and PB, you could usedeps[PC]=PA,PBnot tested though
June 20, 200521 yr if you run PA+PC (PC after PA, but you run both !)or PB+PC (PC after PB, but you run both !)you can putprog[pn]=['PA+PC']uid[pn]=['PAPC']cmd1[pn]=['\\path\\PA.exe']cmd2[pn]=['\\path\\PC.exe']excl[pn]=[PBPC]pn++prog[pn]=['PB+PC']uid[pn]=['PBPC']cmd1[pn]=['\\path\\PB.exe']cmd2[pn]=['\\path\\PC.exe']excl[pn]=[PAPC]pn++
Create an account or sign in to comment