Difference between revisions of "Far Manager"
From WPKG | Open Source Software Deployment and Distribution
m (Minor edit - style) |
(Update to Far manager v3) |
||
Line 7: | Line 7: | ||
<source lang="xml"> | <source lang="xml"> | ||
<?xml version="1.0" encoding="utf-8" ?> | <?xml version="1.0" encoding="utf-8" ?> | ||
− | |||
− | |||
<!-- | <!-- | ||
############################################################################### | ############################################################################### | ||
# SCRIPT = Far Manager # | # SCRIPT = Far Manager # | ||
− | # REVISION = | + | # REVISION = 18/05/2014 # |
# MAINTAINER = Vince # | # MAINTAINER = Vince # | ||
# COMPATIBILITY= (X) x86 | (X) x64 | (.) both separately # | # COMPATIBILITY= (X) x86 | (X) x64 | (.) both separately # | ||
Line 22: | Line 20: | ||
<packages> | <packages> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | <package id="Far" name="Far Manager" revision="%version%" reboot="false" priority="10"> | |
− | + | ||
− | + | <variable name="version" value="Far30b3800" /> | |
− | < | + | <variable name="datever" value="20140208" /> |
+ | <variable name="plateform" value="x86" architecture="x86"/> | ||
+ | <variable name="plateform" value="x64" architecture="x64"/> | ||
− | < | + | <check type="uninstall" condition="exists" path="Far Manager 3" architecture="x86" /> |
− | < | + | <check type="uninstall" condition="exists" path="Far Manager 3 x64" architecture="x64" /> |
− | + | <install cmd='msiexec /q /i "%SOFTWARE%\Far\%version%.%plateform%.%datever%.msi"' /> | |
− | + | ||
− | + | ||
<upgrade include="install" /> | <upgrade include="install" /> | ||
− | |||
− | |||
<remove cmd='wmic product where "name like 'Far Manager%%'" call uninstall' /> | <remove cmd='wmic product where "name like 'Far Manager%%'" call uninstall' /> | ||
</package> | </package> | ||
+ | |||
</packages> | </packages> | ||
</source> | </source> | ||
[[Category: Silent Installers]] | [[Category: Silent Installers]] |
Revision as of 08:42, 18 May 2014
Far Manager is a NortonCommander clone. Now open source!
This script install both 32 & 64Bit msi files.
It'll uninstall the package with WMIC (check Technet for more information about it).
WMIC requires Windows XP Professional SP2 or higher.
<?xml version="1.0" encoding="utf-8" ?>
<!--
###############################################################################
# SCRIPT = Far Manager #
# REVISION = 18/05/2014 #
# MAINTAINER = Vince #
# COMPATIBILITY= (X) x86 | (X) x64 | (.) both separately #
# UNINSTALL = Via WMIC #
# COMMENT = Just modify variables #
###############################################################################
-->
<packages>
<package id="Far" name="Far Manager" revision="%version%" reboot="false" priority="10">
<variable name="version" value="Far30b3800" />
<variable name="datever" value="20140208" />
<variable name="plateform" value="x86" architecture="x86"/>
<variable name="plateform" value="x64" architecture="x64"/>
<check type="uninstall" condition="exists" path="Far Manager 3" architecture="x86" />
<check type="uninstall" condition="exists" path="Far Manager 3 x64" architecture="x64" />
<install cmd='msiexec /q /i "%SOFTWARE%\Far\%version%.%plateform%.%datever%.msi"' />
<upgrade include="install" />
<remove cmd='wmic product where "name like 'Far Manager%%'" call uninstall' />
</package>
</packages>