Jump to content

Recommended Posts

Posted

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?

:blink:


Posted

Basing myself on the help file on the wpi site:

for multiple exclusion, for example PC excludes PA and PB, you can use

excl[PC]=PA,PB

so I think if you want to make PC dependant of PA and PB, you could use

deps[PC]=PA,PB

not tested though

Posted

if you run PA+PC (PC after PA, but you run both !)

or PB+PC (PC after PB, but you run both !)

you can put

prog[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

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...