Difference between revisions of "IGrafx"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(No difference)

Revision as of 18:09, 19 April 2007

This is a silent installer and uninstaller for iGrafx.

First, you have to do an "Installation Point" somewhere on your server - run setup with /a parameter (setup /a). Then, install it on the clients.

<?xml version="1.0" encoding="UTF-8"?>

<packages>

    <package
        id="igrafx"
        name="iGrafx 2006"
        revision="1"
        priority="1">

        <check type="uninstall" condition="exists" path="iGrafx 2006" />

<install cmd='msiexec /qn /i %SOFTWARE%\iGrafx\Installation_Point\setup.msi TRANSFORMS=%SOFTWARE%\iGrafx\Installation_Point\setup_de.mst ALLUSERS=1' />
<upgrade cmd='msiexec /qn /i %SOFTWARE%\iGrafx\Installation_Point\setup.msi TRANSFORMS=%SOFTWARE%\iGrafx\Installation_Point\setup_de.mst ALLUSERS=1' />
<remove  cmd='MsiExec.exe /qn /X{D972F309-7376-4B25-10AA-04C80D11E2F3}' />

    </package>

</packages>

It may be that TRANSFORMS doesn't recognize the variable - in that case, replace it with a full path.