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,790,697

Downloads of v 12.13.7.1:

29,949

Last Update:

31 Mar 2025

Package Maintainer(s):

Software Author(s):

  • Apple Inc.

Tags:

iTunes

  • 1
  • 2
  • 3

12.13.7.1 | Updated: 31 Mar 2025

Downloads:

2,790,697

Downloads of v 12.13.7.1:

29,949

Software Author(s):

  • Apple Inc.

iTunes 12.13.7.1

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Apple Inc. The inclusion of Apple Inc. trademark(s), if any, upon this webpage is solely to identify Apple Inc. goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires Windows 10

Details

Scan Testing Successful:

No detections found in any package files

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'" [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'" 
$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.13.7.1'
    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.13.7.1'
end

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


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

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


package { 'itunes':
  ensure   => '12.13.7.1',
  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 31 Mar 2025.

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.13.7.1'

$packageArgs = @{
  packageName    = 'iTunes'
  fileType       = 'msi'
  url            = 'https://secure-appldnld.apple.com/itunes12/082-11725-20250331-e8250627-b79d-4280-bc70-ad22fccaf996/iTunesSetup.exe'
  url64bit       = 'https://secure-appldnld.apple.com/itunes12/082-11723-20250331-b31ec27c-f9dd-42b1-9af3-2e2590232c09/iTunes64Setup.exe'
  softwareName   = 'iTunes'
  checksum       = '12D8EDF49FED3252E86CA94304EF44556C1FB8ADC5F1832E36BB9B932BD2F99D'
  checksumType   = 'sha256'
  checksum64     = '2f5a7f4a85e24810297cb3ef63fd6d743df1c62edfc5e4ca3677c7b083bc2ff0'
  checksumType64 = 'sha256'
  silentArgs     = "/qn /norestart"
  validExitCodes = @(0, 2010, 1641, 3010)
  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.6.1 13937 Friday, March 7, 2025 Approved
iTunes 12.13.5.3 10801 Friday, February 21, 2025 Approved
iTunes 12.13.4.4 33225 Tuesday, October 22, 2024 Approved
iTunes 12.13.3.2 20608 Thursday, September 12, 2024 Approved
iTunes 12.13.2.3 40805 Wednesday, May 8, 2024 Approved
iTunes 12.13.1.3 55559 Friday, December 15, 2023 Approved
iTunes 12.13.0.9 26233 Tuesday, October 24, 2023 Approved
iTunes 12.12.10.1 22343 Wednesday, September 13, 2023 Approved
iTunes 12.12.9.4 47833 Tuesday, May 23, 2023 Approved
iTunes 12.12.8.2 24435 Thursday, March 30, 2023 Approved
iTunes 12.12.7.1 40112 Thursday, December 15, 2022 Approved
iTunes 12.12.6.1 37478 Tuesday, October 25, 2022 Approved
iTunes 12.12.5.8 31405 Monday, September 12, 2022 Approved
iTunes 12.12.4.1 113582 Wednesday, May 18, 2022 Approved
iTunes 12.12.3.5 71259 Wednesday, March 9, 2022 Approved
iTunes 12.12.2.2 110886 Friday, October 29, 2021 Approved
iTunes 12.12.1.1 44122 Friday, September 24, 2021 Exempted
iTunes 12.12.0.6 8798 Tuesday, September 21, 2021 Approved
iTunes 12.11.4.15 54775 Tuesday, August 10, 2021 Approved
iTunes 12.11.3.17 81205 Friday, April 23, 2021 Approved
iTunes 12.11.0.26 212398 Wednesday, November 18, 2020 Approved
iTunes 12.10.10.2 33070 Thursday, October 22, 2020 Approved
iTunes 12.10.9.3 35577 Thursday, September 17, 2020 Approved
iTunes 12.10.8.5 45790 Friday, July 31, 2020 Approved
iTunes 12.10.7.3 53383 Friday, May 22, 2020 Approved
iTunes 12.10.6.2 28743 Friday, April 17, 2020 Approved
iTunes 12.10.5.12 26782 Wednesday, March 25, 2020 Approved
iTunes 12.10.4.2 51856 Wednesday, January 29, 2020 Approved
iTunes 12.10.3.1 146164 Thursday, December 12, 2019 Approved
iTunes 12.10.2.3 235335 Wednesday, October 30, 2019 Approved
iTunes 12.10.1.4 208236 Tuesday, October 8, 2019 Approved
iTunes 12.10.0.7 18550 Thursday, September 12, 2019 Approved
iTunes 12.9.6.3 33685 Tuesday, July 23, 2019 Approved
iTunes 12.9.5.701 27397 Wednesday, June 26, 2019 Approved
iTunes 12.9.5.7 53314 Tuesday, May 28, 2019 Approved
iTunes 12.9.4.102 38778 Tuesday, March 26, 2019 Approved
iTunes 12.9.3.3 31288 Friday, January 25, 2019 Approved
iTunes 12.9.2.6 27482 Thursday, December 6, 2018 Approved
iTunes 12.9.1.4 22180 Wednesday, October 31, 2018 Approved
iTunes 12.9.0.167 33605 Thursday, September 13, 2018 Approved
iTunes 12.8.0.150 57758 Tuesday, July 10, 2018 Approved
iTunes 12.7.5.9 86527 Tuesday, May 29, 2018 Approved
iTunes 12.7.4.20180409 28379 Monday, April 9, 2018 Approved
iTunes 12.7.3 30794 Wednesday, January 24, 2018 Approved
iTunes 12.7.2 20039 Thursday, December 7, 2017 Approved
iTunes 12.7.1 18702 Tuesday, October 31, 2017 Approved
iTunes 12.7 24124 Wednesday, September 13, 2017 Approved
iTunes 12.6.2 33679 Thursday, July 20, 2017 Approved
iTunes 12.6.1 40040 Monday, May 15, 2017 Approved
iTunes 12.6.0.20170322 18098 Wednesday, March 22, 2017 Approved
iTunes 12.6 1432 Wednesday, March 22, 2017 Approved
iTunes 12.5.5.20170204 16259 Saturday, February 4, 2017 Approved
iTunes 12.5.5 6509 Monday, January 23, 2017 Approved
iTunes 12.5.2 19079 Thursday, October 27, 2016 Approved
iTunes 12.5.1 10444 Tuesday, September 13, 2016 Approved
iTunes 12.4.3 10154 Monday, August 1, 2016 Approved
iTunes 12.4.2 1863 Monday, July 18, 2016 Approved
iTunes 12.4.1 506 Friday, June 3, 2016 Approved
iTunes 12.4 484 Monday, May 16, 2016 Approved
iTunes 12.3.3 5448 Saturday, March 26, 2016 Approved
iTunes 12.3.1 7536 Wednesday, October 21, 2015 Approved
iTunes 12.3 7141 Wednesday, September 16, 2015 Approved
iTunes 12.2.2 7675 Thursday, August 13, 2015 Approved
iTunes 12.2.1 645 Monday, July 13, 2015 Approved
iTunes 12.2 577 Saturday, July 4, 2015 Approved
iTunes 12.1.2.20150501 11518 Friday, May 1, 2015 Approved
iTunes 12.1.2 1035 Thursday, April 9, 2015 Approved
iTunes 12.1.1.20150501 550 Friday, May 1, 2015 Approved
iTunes 12.1.1 605 Wednesday, February 18, 2015 Approved
iTunes 12.1 531 Friday, January 30, 2015 Approved
iTunes 12.0.1.20141019 6817 Sunday, October 19, 2014 Approved
iTunes 12.0.1 770 Thursday, October 16, 2014 Approved
iTunes 11.4 1700 Wednesday, September 10, 2014 Approved
iTunes 11.3.1.20140828 958 Thursday, August 28, 2014 Approved
iTunes 11.3.1 1202 Friday, August 8, 2014 Approved
iTunes 11.3 1551 Thursday, July 10, 2014 Approved
iTunes 11.2.2 1536 Wednesday, May 28, 2014 Approved
iTunes 11.2 889 Thursday, May 15, 2014 Approved
iTunes 11.1.5 1942 Wednesday, February 26, 2014 Approved
iTunes 11.1.4.20140201 1000 Friday, January 31, 2014 Approved
iTunes 11.1.4 944 Thursday, January 23, 2014 Approved
iTunes 11.1.3.20140110 741 Friday, January 10, 2014 Approved
iTunes 11.1.3.20131226 730 Thursday, December 26, 2013 Approved
iTunes 11.1.3 1037 Wednesday, November 6, 2013 Approved
iTunes 11.1.2 637 Wednesday, October 23, 2013 Approved
iTunes 11.1.1 720 Friday, October 4, 2013 Approved
iTunes 11.1 711 Wednesday, September 18, 2013 Approved
iTunes 11.0.5 717 Sunday, August 18, 2013 Approved
iTunes 11.0.4.20130610 792 Tuesday, June 11, 2013 Approved
iTunes 11.0.4 515 Monday, June 10, 2013 Approved
iTunes 11.0.1.13 872 Monday, January 28, 2013 Approved
iTunes 11.0.1.12 670 Monday, January 28, 2013 Approved
iTunes 10.7 774 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