Difference between revisions of "7-Zip"
From WPKG | Open Source Software Deployment and Distribution
(Updated version of 7-Zip to 4.32) |
m (nothing very useful.... add question... add basic installer info) |
||
| Line 17: | Line 17: | ||
</pre> | </pre> | ||
| + | |||
| + | == Questions == | ||
| + | |||
| + | * What does /install=SFQR do? Where is that documented? | ||
| + | |||
| + | == Links == | ||
| + | |||
| + | * [http://www.7-zip.org/faq.html 7-Zip FAQ] briefly discusses silent install | ||
| + | * [http://appdeploy.com/packages/detail.asp?id=506 7-Zip on appdeploy.com] | ||
| + | * [http://nsis.sourceforge.net/Docs/Chapter3.html#3.2 Generic NSIS Installer Command Line Usage] | ||
[[category:Silent Installers|7-Zip]] | [[category:Silent Installers|7-Zip]] | ||
Revision as of 19:58, 20 July 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="C:\Program Files\7-Zip\7zFM.exe" />
<install cmd='\\server\share\7z432.exe /S /install=SFQR'>
<exit code="0" />
</install>
<remove cmd='"%PROGRAMFILES%\7-Zip\Uninstall.exe" /S'>
<exit code="0"/>
</remove>
</package>
Questions
- What does /install=SFQR do? Where is that documented?
Links
- 7-Zip FAQ briefly discusses silent install
- 7-Zip on appdeploy.com
- Generic NSIS Installer Command Line Usage