Difference between revisions of "Samie"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
See the [[Google earth]] silent installer for an explanation of how to create the response file setup.iss and information on the -f1 and -f2 flags.
 
See the [[Google earth]] silent installer for an explanation of how to create the response file setup.iss and information on the -f1 and -f2 flags.
  
<pre>
+
<source lang="xml">
 
<package
 
<package
 
         id="samie"
 
         id="samie"
Line 11: Line 11:
 
         <install cmd="%SOFTWARE%\samie\setup.exe -s -f1\\server\wpkg\pkg\samie\setup.iss -f2C:\Logs\samie.log" />
 
         <install cmd="%SOFTWARE%\samie\setup.exe -s -f1\\server\wpkg\pkg\samie\setup.iss -f2C:\Logs\samie.log" />
 
</package>
 
</package>
</pre>
+
</source>
 +
 
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 17:39, 12 April 2008

See the Google earth silent installer for an explanation of how to create the response file setup.iss and information on the -f1 and -f2 flags.

<package
        id="samie"
        name="samie"
        revision="13"
        priority="3"
        reboot="false">
        <check type="uninstall" condition="exists" path="samie" />
        <install cmd="%SOFTWARE%\samie\setup.exe -s -f1\\server\wpkg\pkg\samie\setup.iss -f2C:\Logs\samie.log" />
</package>