Changes

Quicktime

131 bytes added, 15:10, 30 March 2008
m
no edit summary
Package This is a silent installer for Quicktime 7.3.1
Package for Quicktime 7.3.1: <source lang="xml"><package id="Apple_Quicktime" name="Apple Quicktime Player" revision="731" priority="40" reboot="false">
<check type="logical" condition="and">
<check type="registry" condition="exists" path="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E0D51394-1D45-460A-B62D-383BC4F8B335}" />
<exit code="3010" reboot="true" />
</upgrade>
</package></source>
Now you only have to delete the Registrykey "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -> "QuickTime Task".
First you need the stand alone installer from Quicktime. Then place a text file beside the installer and name it QuickTimeInstaller.ini and place this text inside....
<source lang="ini">
[QTSETUP]
license_option=0
show_programfolder=false
install_qtinfo=true
</source>
 
Then I use these settings:
<source lang="xml"><packages>
<package id="quicktime" name="QuickTime" revision="3" priority="10" reboot="false">
<check type="uninstall" condition="exists" path="QuickTime"/>
<upgrade cmd="cmd /c del /s /q "%ALLUSERSPROFILE%\Desktop\QuickTime Player.lnk""/>
</package>
</packages></source>
Note: You may wish to use 'start /wait' to ensure installation is completed before the installer returns.
[[category:Silent Installers]]