1. | Perform a normal USoft installation. This produces a file called install.sss in the USoft installation folder. This file contains information needed to execute silent installation on target machines. |
2. | Inspect the file and make any necessary changes manually. The relevant information is in the <variables> tag. Here is an example install.sss file: |
<silentsettings activeinstalltype="Custom">
<features>
<feature id="00"/>
<feature id="01"/>
<feature id="02"/>
<feature id="03"/>
</features>
<variables>
<var name="Product_Name" value="USoft"/>
<var name="Product_Version" value="9"/>
<var name="Product_Version_Number" value="9"/>
<var name="Product_Patch" value="1C"/>
<var name="Product_Update" value="01"/>
<var name="Product_Release" value="%Product_Version%.%Product_Patch%"/>
<var name="Product_Full_Release" value="%Product_Release%.%Product_Update%"/>
<var name="Product_Treeversion" value="usd%Product_Version_Number%"/>
<var name="InstallPath" value="c:\usd9"/>
<var name="ProgramGroup" value="USoft Series 9"/>
<var name="TreeRoot" value="D:\9\pro"/>
<var name="WebAuthInstall" value="True"/>
<var name="LicenseDir" value="\\nlbrnnt44\license"/>
...
</variables>
</silentsettings>
|