Difference between revisions of "IGrafx"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
| Line 8: | Line 8: | ||
<packages> | <packages> | ||
| − | + | <package | |
id="igrafx" | id="igrafx" | ||
name="iGrafx 2006" | name="iGrafx 2006" | ||
| Line 18: | Line 18: | ||
<install cmd='msiexec /qn /i %SOFTWARE%\iGrafx\Installation_Point\setup.msi TRANSFORMS=%SOFTWARE%\iGrafx\Installation_Point\setup_de.mst ALLUSERS=1' /> | <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' /> | <upgrade cmd='msiexec /qn /i %SOFTWARE%\iGrafx\Installation_Point\setup.msi TRANSFORMS=%SOFTWARE%\iGrafx\Installation_Point\setup_de.mst ALLUSERS=1' /> | ||
| − | <remove | + | <remove cmd='MsiExec.exe /qn /X{D972F309-7376-4B25-10AA-04C80D11E2F3}' /> |
| − | + | </package> | |
</packages> | </packages> | ||
Revision as of 18:10, 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.