Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,626,819

Downloads of v 12.10.0.7:

18,497

Last Update:

12 Sep 2019

Package Maintainer(s):

Software Author(s):

  • Apple Inc.

Tags:

itunes admin freeware cross-platform

iTunes

This is not the latest version of iTunes available.

  • 1
  • 2
  • 3

12.10.0.7 | Updated: 12 Sep 2019

Downloads:

2,626,819

Downloads of v 12.10.0.7:

18,497

Software Author(s):

  • Apple Inc.

iTunes 12.10.0.7

This is not the latest version of iTunes available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Exemption for this package version only:

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install iTunes, run the following command from the command line or from PowerShell:

>

To upgrade iTunes, run the following command from the command line or from PowerShell:

>

To uninstall iTunes, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade itunes -y --source="'INTERNAL REPO URL'" --version="'12.10.0.7'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade itunes -y --source="'INTERNAL REPO URL'" --version="'12.10.0.7'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install itunes
  win_chocolatey:
    name: itunes
    version: '12.10.0.7'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'itunes' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '12.10.0.7'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller itunes
{
    Name     = "itunes"
    Version  = "12.10.0.7"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'itunes':
  ensure   => '12.10.0.7',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 12 Sep 2019.

Description

iTunes is the best way to organize and enjoy the music, movies, and TV shows you already have and shop for the ones you want to get. It's home to Apple Music, which gives you unlimited access to millions of songs, curated playlists,1 and Beats 1 radio, hosted by Zane Lowe and a team of acclaimed DJs. Enjoy all the entertainment iTunes has to offer on your Mac and PC.

Notes

This package installs iTunes, the required Apple Application Support component, Apple Mobile Device Support and Bonjour, but not the Apple Software Update component. The latter is intrusive and thus probably undesirable for many user because it recommends unnecessary additional software from Apple.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';

$version = '12.10.0.7'

$packageArgs = @{
  packageName    = 'iTunes'
  fileType       = 'msi'
  url            = 'https://secure-appldnld.apple.com/itunes12/061-00119-20190909-68198A32-D33F-11E9-B2F6-6093B44B725A/iTunesSetup.exe'
  url64bit       = 'https://secure-appldnld.apple.com/itunes12/061-00117-20190909-68198B5E-D33F-11E9-B2F6-6193B44B725A/iTunes64Setup.exe'
  softwareName   = 'iTunes'
  checksum       = 'B4B856E43566EF19A1924BE7B986C0C2B3D6201EE0AA29701D34DF60BEE94653'
  checksumType   = 'sha256'
  checksum64     = '05ce8332c5eef37239e9805311cdaa5ce095d77799b1930d78c3c3d5175c0927'
  checksumType64 = 'sha256'
  silentArgs     = "/qn /norestart"
  validExitCodes = @(0, 2010, 1641)
  unzipLocation  = Get-PackageCacheLocation
}

$app = Get-UninstallRegistryKey -SoftwareName $packageArgs.softwareName | Select-Object -first 1

if ($app -and ([version]$app.DisplayVersion -ge [version]$version) -and ($env:ChocolateyForce -ne $true)) {
  Write-Host "iTunes $version or higher is already installed."
  Write-Host "No need to download and install again"
  return;
}

Install-ChocolateyZipPackage @packageArgs

$msiFileList = (Get-ChildItem -Path $packageArgs.unzipLocation -Filter '*.msi' | Where-Object {
  $_.Name -notmatch 'AppleSoftwareUpdate*.msi'
})

foreach ($msiFile in $msiFileList) {
  $packageArgs.packageName = $msiFile.Name
  $packageArgs.file = $msiFile.FullName
  Install-ChocolateyInstallPackage @packageArgs
}

Remove-Item $packageArgs.unzipLocation -Recurse -Force -ea 0

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
iTunes 12.13.0.9 26157 Tuesday, October 24, 2023 Approved
iTunes 12.12.10.1 22239 Wednesday, September 13, 2023 Approved
iTunes 12.12.9.4 47734 Tuesday, May 23, 2023 Approved
iTunes 12.12.8.2 24383 Thursday, March 30, 2023 Approved
iTunes 12.12.7.1 40027 Thursday, December 15, 2022 Approved
iTunes 12.12.6.1 37394 Tuesday, October 25, 2022 Approved
iTunes 12.12.5.8 31349 Monday, September 12, 2022 Approved
iTunes 12.12.4.1 113516 Wednesday, May 18, 2022 Approved
iTunes 12.12.3.5 71191 Wednesday, March 9, 2022 Approved
iTunes 12.12.2.2 110832 Friday, October 29, 2021 Approved
iTunes 12.12.1.1 44055 Friday, September 24, 2021 Exempted
iTunes 12.12.0.6 8741 Tuesday, September 21, 2021 Approved
iTunes 12.11.4.15 54719 Tuesday, August 10, 2021 Approved
iTunes 12.11.3.17 81153 Friday, April 23, 2021 Approved
iTunes 12.11.0.26 212341 Wednesday, November 18, 2020 Approved
iTunes 12.10.10.2 33000 Thursday, October 22, 2020 Approved
iTunes 12.10.9.3 35504 Thursday, September 17, 2020 Approved
iTunes 12.10.8.5 45727 Friday, July 31, 2020 Approved
iTunes 12.10.7.3 53321 Friday, May 22, 2020 Approved
iTunes 12.10.6.2 28610 Friday, April 17, 2020 Approved
iTunes 12.10.5.12 26672 Wednesday, March 25, 2020 Approved
iTunes 12.10.4.2 51773 Wednesday, January 29, 2020 Approved
iTunes 12.10.3.1 146106 Thursday, December 12, 2019 Approved
iTunes 12.10.2.3 235275 Wednesday, October 30, 2019 Approved
iTunes 12.10.1.4 208141 Tuesday, October 8, 2019 Approved
iTunes 12.10.0.7 18497 Thursday, September 12, 2019 Approved
iTunes 12.9.6.3 33609 Tuesday, July 23, 2019 Approved
iTunes 12.9.5.701 27316 Wednesday, June 26, 2019 Approved
iTunes 12.9.5.7 53249 Tuesday, May 28, 2019 Approved
iTunes 12.9.4.102 38709 Tuesday, March 26, 2019 Approved
iTunes 12.9.3.3 31221 Friday, January 25, 2019 Approved
iTunes 12.9.2.6 27361 Thursday, December 6, 2018 Approved
iTunes 12.9.1.4 22118 Wednesday, October 31, 2018 Approved
iTunes 12.9.0.167 33500 Thursday, September 13, 2018 Approved
iTunes 12.8.0.150 57691 Tuesday, July 10, 2018 Approved
iTunes 12.7.5.9 86454 Tuesday, May 29, 2018 Approved
iTunes 12.7.4.20180409 28301 Monday, April 9, 2018 Approved
iTunes 12.7.3 30738 Wednesday, January 24, 2018 Approved
iTunes 12.7.2 19995 Thursday, December 7, 2017 Approved
iTunes 12.7.1 18638 Tuesday, October 31, 2017 Approved
iTunes 12.7 24031 Wednesday, September 13, 2017 Approved
iTunes 12.6.2 33621 Thursday, July 20, 2017 Approved
iTunes 12.6.1 39987 Monday, May 15, 2017 Approved
iTunes 12.6.0.20170322 18020 Wednesday, March 22, 2017 Approved
iTunes 12.6 1374 Wednesday, March 22, 2017 Approved
iTunes 12.5.5.20170204 16183 Saturday, February 4, 2017 Approved
iTunes 12.5.5 6446 Monday, January 23, 2017 Approved
iTunes 12.5.2 19020 Thursday, October 27, 2016 Approved
iTunes 12.5.1 10383 Tuesday, September 13, 2016 Approved
iTunes 12.4.3 10089 Monday, August 1, 2016 Approved
iTunes 12.4.2 1801 Monday, July 18, 2016 Approved
iTunes 12.4.1 447 Friday, June 3, 2016 Approved
iTunes 12.4 429 Monday, May 16, 2016 Approved
iTunes 12.3.3 5364 Saturday, March 26, 2016 Approved
iTunes 12.3.1 7479 Wednesday, October 21, 2015 Approved
iTunes 12.3 7080 Wednesday, September 16, 2015 Approved
iTunes 12.2.2 7613 Thursday, August 13, 2015 Approved
iTunes 12.2.1 574 Monday, July 13, 2015 Approved
iTunes 12.2 506 Saturday, July 4, 2015 Approved
iTunes 12.1.2.20150501 11459 Friday, May 1, 2015 Approved
iTunes 12.1.2 957 Thursday, April 9, 2015 Approved
iTunes 12.1.1.20150501 471 Friday, May 1, 2015 Approved
iTunes 12.1.1 549 Wednesday, February 18, 2015 Approved
iTunes 12.1 478 Friday, January 30, 2015 Approved
iTunes 12.0.1.20141019 6741 Sunday, October 19, 2014 Approved
iTunes 12.0.1 724 Thursday, October 16, 2014 Approved
iTunes 11.4 1634 Wednesday, September 10, 2014 Approved
iTunes 11.3.1.20140828 886 Thursday, August 28, 2014 Approved
iTunes 11.3.1 1124 Friday, August 8, 2014 Approved
iTunes 11.3 1485 Thursday, July 10, 2014 Approved
iTunes 11.2.2 1476 Wednesday, May 28, 2014 Approved
iTunes 11.2 813 Thursday, May 15, 2014 Approved
iTunes 11.1.5 1856 Wednesday, February 26, 2014 Approved
iTunes 11.1.4.20140201 923 Friday, January 31, 2014 Approved
iTunes 11.1.4 866 Thursday, January 23, 2014 Approved
iTunes 11.1.3.20140110 683 Friday, January 10, 2014 Approved
iTunes 11.1.3.20131226 668 Thursday, December 26, 2013 Approved
iTunes 11.1.3 966 Wednesday, November 6, 2013 Approved
iTunes 11.1.2 580 Wednesday, October 23, 2013 Approved
iTunes 11.1.1 646 Friday, October 4, 2013 Approved
iTunes 11.1 667 Wednesday, September 18, 2013 Approved
iTunes 11.0.5 651 Sunday, August 18, 2013 Approved
iTunes 11.0.4.20130610 731 Tuesday, June 11, 2013 Approved
iTunes 11.0.4 461 Monday, June 10, 2013 Approved
iTunes 11.0.1.13 820 Monday, January 28, 2013 Approved
iTunes 11.0.1.12 581 Monday, January 28, 2013 Approved
iTunes 10.7 703 Friday, September 21, 2012 Approved
Discussion for the iTunes Package

Ground Rules:

  • This discussion is only about iTunes and the iTunes package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or iTunes, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus