Hi, all!<br><br>Is it possible to set different variables per xml file?<br><br>For example, I may have a environment variable %WPKG_SRC%=\\server\share\Distribution\Managed<br><br>In this folder I have several subfolders:<br>
- Common<br>- Administration<br>- Management<br><br>Which contains software fore these departments. I then have three packages xml files named the same for WPKG, with instructions on how to install the software.<br><br>Today I need to have:<br>
common.xml:<br>...<br><install cmd="%WPKG_SRC%\Common\package\package.exe" /><br>...<br>administration.xml:<br>...<br><install cmd="%WPKG_SRC%\Administration\package\package.exe" /><br>...<br>
<br>etc.<br><br>Is it somehow possible to instead set:<br>common.xml<br><packages><br>  <variable name="SOFTWARE" value="%WPKG_SRC%\common\" /><br>...<br><install cmd="%SOFTWARE\package\package.exe" /><br>
...<br><br>etc.<br><br>This would make it easier to have portable packages, even though the source of the packages are spread out on the network.<br><br>-CL<br>