Difference between revisions of "Far Manager"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 49: | Line 49: | ||
</source> | </source> | ||
+ | |||
+ | [[Category: Silent Installers]] |
Revision as of 23:13, 30 July 2011
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.
<!--
###############################################################################
# SCRIPT = Far Manager #
# REVISION = 28/07/2011 #
# MAINTENAIR = Vince #
# COMPATIBILITY= (X) x86 | (X) x64 | (.) both separately #
# UNINSTALL = Via WMIC #
# COMMENT = Just modify variables #
###############################################################################
-->
<package
id="Far"
name="Far Manager 2"
revision="%version%"
reboot="false"
priority="10">
<variable name="version" value="Far20b1807" />
<variable name="datever" value="20110203" />
<check type="logical" condition="or">
<check type="uninstall" condition="exists" path="Far Manager 2" />
<check type="uninstall" condition="exists" path="Far Manager 2 x64" />
</check>
<install cmd='msiexec /q /i "%SOFTWARE%\Far2\%version%.x86.%datever%.msi"' architecture="x86" />
<install cmd='msiexec /q /i "%SOFTWARE%\Far2\%version%.x64.%datever%.msi"' architecture="x64" />
<!-- Copy registry settings, users can add it to registry with the script menu -->
<install cmd='%comspec% /c copy "%SOFTWARE%\Far2\FarSettings.Machine.reg" "%ProgramFiles%\Far2"' />
<install cmd='%comspec% /c copy "%SOFTWARE%\Far2\FarSettings.User.reg" "%ProgramFiles%\Far2"' />
<remove cmd='%comspec% /c del "%ProgramFiles%\Far2\FarSettings.User.reg"' />
<remove cmd='%comspec% /c del "%ProgramFiles%\Far2\FarSettings.Machine.reg"' />
<remove cmd='wmic product where "name like 'Far Manager%%'" call uninstall' />
</package>