On 4/7/2010 8:56 PM, Christopher Rector wrote: > Does any one have a working script for Quicktime 7.6.6, I tried the one > on the archive and the apple app support program gets installed but it > never installs the quicktime app. > > I've tried everything that I can think of to get Quicktime installed > properly, even extracting the .msi files from the package and using > those. But, for what ever reason it never seems to install the quicktime > app. It's got to be something I'm missing or doing wrong. > This is one of my first attempts to use WPKG, and from what it looks > like it could save me hours of updating workstations every time a new > third party application patch comes out. > I install quicktime on hundreds computers with the following definitions I'm using the joined mst to make some changes: no tray icon, no shortcuts, no update -------------------------------------------------------------------------- <package id="applesupport" name="Apple Application Support 1.2.1" revision="3" reboot="false" priority="118"> <check type="uninstall" condition="exists" path="Apple Application Support" /> <check type="registry" condition="equals" path="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{553255F3-78FD-40F1-A6F8-6882140265FE}\DisplayVersion" value="1.2.1" /> <install cmd='msiexec /qb! /i "%WpkgRoot%\Packages\QuickTime\AppleApplicationSupport.msi" /log %TEMP%\applesupport.log' /> <upgrade cmd='msiexec /qb! /i "%WpkgRoot%\Packages\QuickTime\AppleApplicationSupport.msi" /log %TEMP%\applesupport.log' /> <remove cmd='MsiExec.exe /qb! /x {553255F3-78FD-40F1-A6F8-6882140265FE}' /> </package> <package id="quicktime" name="Quick Time 7.6.6" revision="16" reboot="false" priority="117"> <depends package-id="applesupport"/> <check type="uninstall" condition="exists" path="QuickTime" /> <check type="file" condition="versionequalto" path="%ProgramFiles%\QuickTime\QuickTimePlayer.exe" value="7.66.71.0" /> <install cmd='msiexec /qb! /i "%WpkgRoot%\Packages\QuickTime\QuickTime.msi" TRANSFORMS="%WpkgRoot%\Packages\QuickTime\QuickTime.mst" /log %TEMP%\qt.log'> <exit code="0" /> </install> <upgrade cmd='msiexec /qb! /i "%WpkgRoot%\Packages\QuickTime\QuickTime.msi" TRANSFORMS="%WpkgRoot%\Packages\QuickTime\QuickTime.mst" /log %TEMP%\qt.log'> <exit code="0" /> </upgrade> <remove cmd='MsiExec.exe /qb! /x {28BE306E-5DA6-4F9C-BDB0-DBA3C8C6FFFD}' /> </package> -------------------------------------------------------------------------- Regards -- Jean-Jacques Moulis Tel: (013) 281684 ISY Fax: (013) 139282 Linköping University E-mail: jj at isy.liu.se 581 83 Linköping -------------- next part -------------- A non-text attachment was scrubbed... Name: QuickTime.7z Type: application/octet-stream Size: 984 bytes Desc: not available URL: <http://lists.wpkg.org/pipermail/wpkg-users/attachments/20100408/9b4d556a/attachment.obj> |