Difference between revisions of "MRemoteNG"
From WPKG | Open Source Software Deployment and Distribution
Tiefenbass (Talk | contribs) (Created page with "This is a silent installer for [http://www.mremoteng.org/ mRemoteNG]. <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <packages:packages xmlns:packages="http://ww...") |
(No difference)
|
Revision as of 14:34, 3 April 2015
This is a silent installer for mRemoteNG.
<?xml version="1.0" encoding="UTF-8"?>
<packages:packages xmlns:packages="http://www.wpkg.org/packages"
xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.wpkg.org/packages xsd/packages.xsd">
<package
id="mremoteng"
name="mRemoteNG"
revision="1"
reboot="false"
priority="0">
<variable name="version" value="1.72" />
<variable name="PKG_DESTINATION" value="%PROGRAMFILES%\mRemoteNG" architecture="x86" />
<variable name="PKG_DESTINATION" value="%PROGRAMFILES(x86)%\mRemoteNG" architecture="x64" />
<check type="uninstall" condition="exists" path="mRemoteNG" />
<install cmd='"%SOFTWARE%\mremoteng\mRemoteNG-Installer-%version%.exe" /S' />
<upgrade cmd='"%SOFTWARE%\mremoteng\mRemoteNG-Installer-%version%.exe" /S' />
<remove cmd='"%PKG_DESTINATION%\mRemoteNG\uninstall.exe" /S' />
</package>
</packages:packages>