Difference between revisions of "Quicktime"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
− | This is a silent installer for Quicktime. | + | This is a silent installer for Quicktime. It uses AutoIT, so it's discouraged (and you'll have to write the .aut file yourself). |
<package id="quicktime" name="Quicktime (movie player, plugin)" revision="1" priority="0" reboot="false"> | <package id="quicktime" name="Quicktime (movie player, plugin)" revision="1" priority="0" reboot="false"> | ||
Line 8: | Line 8: | ||
<upgrade cmd='' /> | <upgrade cmd='' /> | ||
</package> | </package> | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | Below a "truly silent" method, taken from http://www.mediamacros.com/item/item-1006687115/: | ||
+ | |||
+ | How do I make Quicktime Install Silently? | ||
+ | |||
+ | 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.... | ||
+ | |||
+ | [QTSETUP] | ||
+ | license_option=0 | ||
+ | no_dialogs=true | ||
+ | registration_dialog=false | ||
+ | supress_speed_dialog=true | ||
+ | install_qtjava=false | ||
+ | install_qd3d=true | ||
+ | show_sample=false | ||
+ | show_readme=false | ||
+ | show_programfolder=false | ||
+ | install_qtinfo=true | ||
[[category:Silent Installers|Quicktime]] | [[category:Silent Installers|Quicktime]] |
Revision as of 19:09, 9 March 2006
This is a silent installer for Quicktime. It uses AutoIT, so it's discouraged (and you'll have to write the .aut file yourself).
<package id="quicktime" name="Quicktime (movie player, plugin)" revision="1" priority="0" reboot="false"> <check type="uninstall" condition="exists" path="QuickTime" /> <install cmd='\\server\share\quicktime\quicktimefullinstaller.exe' /> <install cmd='cmd /c del /s /q "%AllUsersProfile%\Desktop\QuickTime Player.lnk" ' /> <remove cmd="\\spd\wpkg\tool\autoit \\spd\wpkg\scripts\un-quicktime.aut" /> <upgrade cmd= /> </package>
Below a "truly silent" method, taken from http://www.mediamacros.com/item/item-1006687115/:
How do I make Quicktime Install Silently?
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....
[QTSETUP] license_option=0 no_dialogs=true registration_dialog=false supress_speed_dialog=true install_qtjava=false install_qd3d=true show_sample=false show_readme=false show_programfolder=false install_qtinfo=true