Changes

ITunes

No change in size, 13:02, 19 April 2011
Updated to version 10.2.2.12
* Apple is also known to sometimes modify the setup packages of their programs even at minor version changes, so do not blindly assume that a new ITunes installer will work the same way as the old one did!
* '''Warning''': The version of Quicktime that is bundled with ITunes is '''not''' necessarily the newest version available and may contain known security flaws. For example ITunes 9.2.1.5 contained Quicktime 7.66, although Quicktime 7.67 had already been released since weeks at that time. Quicktime 7.66 has a highly critical security flaw that allows for remote execution of arbitrary code, simply by visiting a webpage ([http://secunia.com/advisories/40729 secunia.com]). If you encounter such a scenario, you will have to download the standalone Quicktime installer from Apple and extract the file QuickTime.msi from there. Alternatively you can use the minimal ITunes installation method below, which removes the Quicktime browser plugin and thereby mitigates the attack surface.
* There is a 64bit version of ITunes available too. As of version 10.12.2.17 12 the 64bit installer contains 64bit versions of ITunes itself and Apple Mobile Device Support and 32bit versions of Quicktime and Apple Application Support. The package definitions for the 64bit versions look basically the same as below, just the paths and GUIDs are different.
= Full ITunes installation 10.2.02.34 12 =
''If you update this code, please remember the GUIDs change on each new version installed!''
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<package id='appleapplicationsupport' name='Apple Application Support' revision='1.5.01' reboot='false' priority='12'> <check type='registry' condition='equals' path='HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{2DC94AFD853A4763-A6E26643-4AB44604-91328D64-4A3F8E07B38628BDD8925F4C}\DisplayVersion' value='1.5.0' />
<install cmd='msiexec /i "%SOFTWARE%\itunes\AppleApplicationSupport.msi" /passive /norestart' timeout='300'>
</upgrade>
<remove cmd='msiexec /x{2DC94AFD853A4763-A6E26643-4AB44604-91328D64-4A3F8E07B38628BDD8925F4C} /passive /norestart' timeout='300'>
<exit code='0' />
<exit code='1605' />
</remove>
</package>
<package id='applemobilesupport' name='Apple Mobile Device Support' revision='3.4.0.25' reboot='false' priority='12'>
<check type='registry' condition='equals' path='HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{CACAEB5F-174D-4C7C-AC56-A33289A807CA}\DisplayVersion' value='3.3.0.69' />
</remove>
</package>
<package id='itunes' name='Apple iTunes' revision='10.2.02.3412' reboot='false' priority='1'>
<depends package-id='appleapplicationsupport' />
<depends package-id='quicktime' />
<check type='uninstall' condition='exists' path='iTunes' />
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\iTunes\iTunes.exe' value='10.2.02.3412' />
<install cmd='msiexec.exe /i "%SOFTWARE%\itunes\iTunes.msi" SCHEDULE_ASUW=0 /passive /norestart' timeout='300'>
<upgrade cmd='reg add "HKLM\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default" /v "AdminFlags" /t REG_DWORD /d "0x101" /f' timeout='60' />
<remove cmd='msiexec.exe /x{1B343C8C353FE16B-F17030FE-4829469A-8481BF55-E163317C5830B978F4218003} /passive /norestart' timeout='300'>
<exit code='0' />
<exit code='1605' />
</package>
<!-- Do not use version 7.68 which is bundled with ITunes 10.0.1.54 due to security flaws! -->
<package id='quicktime' name='Apple QuickTime' revision='7.69.80.9' reboot='false' priority='12'>
<check type='uninstall' condition='exists' path='QuickTime' />
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\QuickTime\QuickTimePlayer.exe' value='7.69.80.9' />
</source>
= Minimal ITunes installation 10.2.02.34 12 =
The goal of this setup is to get
# a working installation of ITunes which allows you to activate, backup and sync an IPhone or Ipod, download and install new iOS versions and optionally get songs/apps from the Apple Store,
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<package id='itunes' name='Apple iTunes' revision='10.2.02.3412' reboot='false' priority='1'>
<depends package-id='appleapplicationsupport' />
<depends package-id='quicktime' />
<check type='uninstall' condition='exists' path='iTunes' />
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\iTunes\iTunes.exe' value='10.2.02.3412' />
<!-- DESKTOP_SHORTCUTS=0: Don't create desktop shortcuts
<upgrade cmd='reg add "HKLM\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default" /v "AdminFlags" /t REG_DWORD /d "0x101" /f' timeout='60' />
<remove cmd='msiexec.exe /x{1B343C8C353FE16B-F17030FE-4829469A-8481BF55-E163317C5830B978F4218003} /passive /norestart' timeout='300'>
<exit code='0' />
<exit code='1605' />
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<package id='quicktime' name='Apple QuickTime' revision='7.69.80.9' reboot='false' priority='12'>
<chain package-id='quicktimesettings' />
Anonymous user