Difference between revisions of "7-Zip"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 8: Line 8:
 
     <check type="file" condition="exists" path="%PROGRAMFILES%\7-Zip\7zFM.exe" />
 
     <check type="file" condition="exists" path="%PROGRAMFILES%\7-Zip\7zFM.exe" />
  
     <install cmd='\\server\share\7z432.exe /S /install=SFQR'>
+
     <install cmd='\\server\share\7z432.exe /S'>
 
     <exit code="0" />
 
     <exit code="0" />
 
     </install>
 
     </install>
Line 18: Line 18:
  
  
== Questions ==
+
== 7-Zip installer options ==
  
Q: What does /install=SFQR do?  Where is that documented?
+
"Use the "/S" parameter to do a silent installation and the "/D=dir" parameter to specify the "output directory". These options are case-sensitive. 7-Zip uses the NSIS installer by Nullsoft." - http://www.7-zip.org/faq.html
 
+
[http://sourceforge.net/forum/forum.php?thread_id=1539325&forum_id=45797 A] "These switches never worked because they never were implemented. "
+
  
 
== Links ==
 
== Links ==

Revision as of 08:59, 2 September 2006

A free file compressor/extractor: www.7-zip.org

<package
    id="7zip"
    name="7-Zip"     revision="432"
    reboot="false"     priority="0">
    <check type="file" condition="exists" path="%PROGRAMFILES%\7-Zip\7zFM.exe" />

    <install cmd='\\server\share\7z432.exe /S'>
    <exit code="0" />
    </install>
    <remove cmd='"%PROGRAMFILES%\7-Zip\Uninstall.exe" /S'>
        <exit code="0"/>
    </remove>
</package>


7-Zip installer options

"Use the "/S" parameter to do a silent installation and the "/D=dir" parameter to specify the "output directory". These options are case-sensitive. 7-Zip uses the NSIS installer by Nullsoft." - http://www.7-zip.org/faq.html

Links