Difference between revisions of "Far Manager"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Update to Far manager v3)
m (Minor update)
Line 13: Line 13:
 
# REVISION    = 18/05/2014                                                  #
 
# REVISION    = 18/05/2014                                                  #
 
# MAINTAINER  = Vince                                                        #
 
# MAINTAINER  = Vince                                                        #
# COMPATIBILITY= (X) x86 | (X) x64 | (.) both separately                      #
 
 
# UNINSTALL    = Via WMIC                                                    #
 
# UNINSTALL    = Via WMIC                                                    #
 
# COMMENT      = Just modify variables                                        #
 
# COMMENT      = Just modify variables                                        #

Revision as of 09:08, 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                                                        #
# 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 &apos;Far Manager%%&apos;" call uninstall' />

  </package>

</packages>