<br><font size=2 face="sans-serif">I'm testing a check type="execute"
to install software if the computer is member of an MS AD group.</font>
<br>
<br><font size=2 face="sans-serif">This check works well alone::</font>
<br><font size=2 face="sans-serif">         <check
type="execute" path='\\sc18\Sources\WPKG\Packages\tools\groupmember.cmd
"G WPKG tstpkg"' condition="exitcodeequalto" value="0"
/></font>
<br><font size=2 face="sans-serif">It installs the package if the computer
is member of the AD Group "G WPKG tstpkg"</font>
<br>
<br><font size=2 face="sans-serif">However it will Allways install the
package as the condition will allways be true. </font>
<br><font size=2 face="sans-serif">So I need to add a second condition
so it will check if the package is not already installed. This is where
I bug::</font>
<br><font size=2 face="sans-serif"><br>
<check type="logical" condition="and"></font>
<br><font size=2 face="sans-serif">         <check
type="execute" path='\\sc18\Sources\WPKG\Packages\tools\groupmember.cmd
"G WPKG tstpkg"' condition="exitcodeequalto" value="0"
/></font>
<br><font size=2 face="sans-serif">         <check
type="file" condition="exists" path="c:\tstpkg\tstpkg.dat"
/></font>
<br><font size=2 face="sans-serif"></check></font>
<br>
<br><font size=2 face="sans-serif">Both check works well alone.</font>
<br>
<br><font size=2 face="sans-serif">If I put "AND", it works,
but it will still allways install. (the 1st check is allways true)</font>
<br>
<br><font size=2 face="sans-serif">If I put "OR" it will install
to anyone, regardless of the group member.</font>
<br>
<br><font size=2 face="sans-serif">I need some way of doing </font>
<br><font size=2 face="sans-serif">IF check#1 then</font>
<br><font size=2 face="sans-serif">     IF check #2 then</font>
<br><font size=2 face="sans-serif">          install
package</font>
<br><font size=2 face="sans-serif">     endif</font>
<br><font size=2 face="sans-serif">endif</font>
<br>
<br><font size=2 face="sans-serif">Any way of doing this ?</font>
<br>