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:

4,456,119

Downloads of v 1.0.33.106:

14,379

Last Update:

03 Aug 2016

Package Maintainer(s):

Software Author(s):

  • Spotify Ltd

Tags:

Spotify (Install)

This is not the latest version of Spotify (Install) available.

  • 1
  • 2
  • 3

1.0.33.106 | Updated: 03 Aug 2016

Downloads:

4,456,119

Downloads of v 1.0.33.106:

14,379

Maintainer(s):

Software Author(s):

  • Spotify Ltd

Spotify (Install) 1.0.33.106

This is not the latest version of Spotify (Install) available.

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

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Spotify (Install), run the following command from the command line or from PowerShell:

>

To upgrade Spotify (Install), run the following command from the command line or from PowerShell:

>

To uninstall Spotify (Install), 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 spotify -y --source="'INTERNAL REPO URL'" --version="'1.0.33.106'" [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 spotify -y --source="'INTERNAL REPO URL'" --version="'1.0.33.106'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install spotify
  win_chocolatey:
    name: spotify
    version: '1.0.33.106'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'spotify' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.33.106'
end

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


cChocoPackageInstaller spotify
{
    Name     = "spotify"
    Version  = "1.0.33.106"
    Source   = "INTERNAL REPO URL"
}

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


package { 'spotify':
  ensure   => '1.0.33.106',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator gep13 on 18 Aug 2016.

Description

Spotify – Millions of tracks, any time you like. Just search for it in Spotify, then play it. Just help yourself to whatever you want, whenever you want it.


tools\chocolateyInstall.ps1
try{
  $scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)

  #Changing compat mode to avoid dialog stating that installer must run as a non admin user
  $env:__COMPAT_LAYER="WINXPSP3"
  Install-ChocolateyPackage 'spotify' 'exe' '/SILENT' 'https://download.spotify.com/SpotifySetup.exe'
  $env:__COMPAT_LAYER=$null

  $installerFile = Join-Path $scriptDir 'install.au3'
  write-host "Finishing spotify install with AutoIt3 using `'$installerFile`'"
  $installArgs = "/c autoit3 `"$installerFile`""
  Start-Process "cmd" -ArgumentList "$installArgs" -Wait

  Write-ChocolateySuccess 'spotify'
} catch {
  Write-ChocolateyFailure 'spotify' "$($_.Exception.Message)"
  throw
}
finally {
  $env:__COMPAT_LAYER=$null
}
tools\install.au3
;WinWait("Spotify", "Spotify", 120)
ProcessClose("spotify.exe")
;If ControlClick("Exit Dropbox", "Are you sure", "[CLASS:Button; INSTANCE:1]")=0 Then
;	MsgBox(0, "Autoit Dropbox install script", "Something's wrong: The ControlClick used to confirm the ;'are you sure' dialog returned failure - proceeding with file copy", 5)
;EndIf
 
;Installation complete
Exit

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
Spotify 1.2.65.255 37662 Wednesday, June 4, 2025 Approved
Spotify 1.2.64.408 36118 Thursday, May 22, 2025 Approved
Spotify 1.2.63.394 24195 Tuesday, May 13, 2025 Approved
Spotify 1.2.62.580 51371 Friday, April 25, 2025 Approved
Spotify 1.2.61.443 32838 Monday, April 14, 2025 Approved
Spotify 1.2.60.564 48572 Wednesday, March 26, 2025 Approved
Spotify 1.2.59.514 34704 Friday, March 14, 2025 Approved
Spotify 1.2.58.498 40575 Thursday, February 27, 2025 Approved
Spotify 1.2.57.463 38979 Wednesday, February 12, 2025 Approved
Spotify 1.2.56.502 37280 Thursday, January 30, 2025 Approved
Spotify 1.2.55.235 36855 Friday, January 17, 2025 Approved
Spotify 1.2.53.440 40680 Friday, January 3, 2025 Approved
Spotify 1.2.53.438 28550 Friday, December 20, 2024 Approved
Spotify 1.2.52.442 38013 Thursday, December 5, 2024 Approved
Spotify 1.2.51.345 41256 Thursday, November 21, 2024 Approved
Spotify 1.2.50.335 23870 Thursday, November 14, 2024 Approved
Spotify 1.2.49.439 58330 Thursday, October 24, 2024 Approved
Spotify 1.2.48.405 44926 Thursday, October 10, 2024 Approved
Spotify 1.2.47.364 38586 Wednesday, September 25, 2024 Approved
Spotify 1.2.45.454 24633 Friday, August 30, 2024 Approved
Spotify 1.2.44.405 14873 Thursday, August 15, 2024 Approved
Spotify 1.2.43.420 14788 Friday, August 2, 2024 Approved
Spotify 1.2.42.290 15972 Thursday, July 18, 2024 Approved
Spotify 1.2.41.434 14026 Friday, July 5, 2024 Approved
Spotify 1.2.40.599 15586 Thursday, June 20, 2024 Approved
Spotify 1.2.39.578 16018 Wednesday, June 5, 2024 Approved
Spotify 1.2.38.720 14147 Friday, May 24, 2024 Approved
Spotify 1.2.37.701 22412 Wednesday, May 8, 2024 Approved
Spotify 1.2.36.959 27542 Friday, May 3, 2024 Approved
Spotify 1.2.35.663 110554 Wednesday, April 10, 2024 Approved
Spotify 1.2.32.997 142212 Thursday, February 29, 2024 Approved
Spotify 1.2.31.1205 46249 Wednesday, February 14, 2024 Approved
Spotify 1.2.30.1135 43228 Friday, February 2, 2024 Approved
Spotify 1.2.29.605 41510 Friday, January 19, 2024 Approved
Spotify 1.2.26.1187 66864 Friday, December 8, 2023 Approved
Spotify 1.2.25.1011 45390 Friday, November 24, 2023 Approved
Spotify 1.2.24.756 37028 Friday, November 10, 2023 Approved
Spotify 1.2.23.1125 94 Tuesday, November 7, 2023 Approved
Spotify 1.2.22.982 34346 Wednesday, October 11, 2023 Approved
Spotify 1.2.21.1104 18344 Thursday, September 28, 2023 Approved
Spotify 1.2.20.1218 11053 Friday, September 22, 2023 Approved
Spotify 1.2.20.1216 7544 Monday, September 18, 2023 Approved
Spotify 1.2.19.941 22255 Thursday, August 31, 2023 Approved
Spotify 1.2.18.999 18620 Thursday, August 17, 2023 Approved
Spotify 1.2.17.834 22164 Friday, August 4, 2023 Approved
Spotify 1.2.16.947 24615 Wednesday, July 19, 2023 Approved
Spotify 1.2.15.828 14558 Friday, July 7, 2023 Approved
Spotify 1.2.14.1149 18605 Thursday, June 22, 2023 Approved
Spotify 1.2.13.661 18712 Friday, June 9, 2023 Approved
Spotify 1.2.12.902 21157 Thursday, May 25, 2023 Approved
Spotify 1.2.11.916 13748 Tuesday, May 16, 2023 Approved
Spotify 1.2.10.760 25494 Thursday, April 27, 2023 Approved
Spotify 1.2.9.743 22192 Friday, April 14, 2023 Approved
Spotify 1.2.8.923 20236 Thursday, March 30, 2023 Approved
Spotify 1.2.7.1277 16093 Thursday, March 16, 2023 Approved
Spotify 1.2.6.863 19173 Thursday, March 2, 2023 Approved
Spotify 1.2.5.1006 16034 Friday, February 17, 2023 Approved
Spotify 1.2.4.912 16519 Friday, February 3, 2023 Approved
Spotify 1.2.3.1115 16924 Thursday, January 19, 2023 Approved
Spotify 1.2.0.1165 30950 Thursday, December 8, 2022 Approved
Spotify 1.1.99.878 14463 Thursday, November 24, 2022 Approved
Spotify 1.1.98.691 14074 Friday, November 11, 2022 Approved
Spotify 1.1.97.962 15605 Thursday, October 27, 2022 Approved
Spotify 1.1.96.785 12493 Friday, October 14, 2022 Approved
Spotify 1.1.95.893 13591 Friday, September 30, 2022 Approved
Spotify 1.1.94.872 8823 Thursday, September 22, 2022 Approved
Spotify 1.1.94.870 7051 Friday, September 16, 2022 Approved
Spotify 1.1.93.896 11723 Friday, September 2, 2022 Approved
Spotify 1.1.92.647 20458 Thursday, August 25, 2022 Approved
Spotify 1.1.91.824 49843 Thursday, August 4, 2022 Approved
Spotify 1.1.90.859 33358 Friday, July 22, 2022 Approved
Spotify 1.1.89.862 29816 Monday, July 11, 2022 Approved
Spotify 1.1.88.612 40166 Thursday, June 23, 2022 Approved
Spotify 1.1.87.612 51069 Thursday, June 9, 2022 Approved
Spotify 1.1.86.857 41675 Friday, May 27, 2022 Approved
Spotify 1.1.85.895 43427 Friday, May 13, 2022 Approved
Spotify 1.1.84.716 48563 Thursday, April 28, 2022 Approved
Spotify 1.1.83.956 24759 Thursday, April 21, 2022 Approved
Spotify 1.1.81.604 103477 Friday, March 18, 2022 Approved
Spotify 1.1.80.699 64062 Thursday, March 3, 2022 Approved
Spotify 1.1.79.763 58504 Friday, February 18, 2022 Approved
Spotify 1.1.78.765 57956 Friday, February 4, 2022 Approved
Spotify 1.1.77.643 64816 Thursday, January 20, 2022 Approved
Spotify 1.1.76.447 53436 Friday, January 7, 2022 Approved
Spotify 1.1.74.631 78628 Friday, December 10, 2021 Approved
Spotify 1.1.73.517 49375 Friday, November 26, 2021 Approved
Spotify 1.1.72.439 52004 Friday, November 12, 2021 Approved
Spotify 1.1.71.560 46052 Friday, October 29, 2021 Approved
Spotify 1.1.70.610 55868 Wednesday, October 13, 2021 Approved
Spotify 1.1.69.612 47459 Friday, October 1, 2021 Approved
Spotify 1.1.68.632 40666 Tuesday, September 21, 2021 Approved
Spotify 1.1.68.628 14202 Friday, September 17, 2021 Approved
Spotify 1.1.67.586 49424 Friday, September 3, 2021 Approved
Spotify 1.1.66.580 42719 Monday, August 23, 2021 Approved
Spotify 1.1.66.578 17533 Wednesday, August 18, 2021 Approved
Spotify 1.1.65.643 42196 Thursday, August 5, 2021 Approved
Spotify 1.1.64.561 51594 Thursday, July 22, 2021 Approved
Spotify 1.1.63.568 35144 Monday, July 12, 2021 Approved
Spotify 1.1.62.583 47338 Monday, June 28, 2021 Approved
Spotify 1.1.61.583 42258 Monday, June 14, 2021 Approved
Spotify 1.1.60.672 52721 Friday, May 28, 2021 Approved
Spotify 1.1.60.668 8708 Wednesday, May 26, 2021 Approved
Spotify 1.1.59.714 15682 Friday, May 21, 2021 Approved
Spotify 1.1.59.712 17615 Monday, May 17, 2021 Approved
Spotify 1.1.58.820 59214 Friday, April 30, 2021 Approved
Spotify 1.1.57.443 23956 Tuesday, April 20, 2021 Approved
Spotify 1.1.56.595 28244 Thursday, April 1, 2021 Approved
Spotify 1.1.54.592 40000 Friday, March 5, 2021 Approved
Spotify 1.1.53.608 18059 Monday, February 22, 2021 Approved
Spotify 1.1.52.687 19795 Friday, February 5, 2021 Approved
Spotify 1.1.51.382 11338 Thursday, January 28, 2021 Approved
Spotify 1.1.51.380 8319 Friday, January 22, 2021 Approved
Spotify 1.1.48.625 42324 Friday, December 11, 2020 Approved
Spotify 1.1.47.684 13093 Tuesday, December 1, 2020 Approved
Spotify 1.1.46.916 16384 Monday, November 16, 2020 Approved
Spotify 1.1.45.621 19898 Tuesday, November 3, 2020 Approved
Spotify 1.1.44.538 14136 Friday, October 16, 2020 Approved
Spotify 1.1.43.700 17233 Wednesday, September 30, 2020 Approved
Spotify 1.1.42.622 10380 Thursday, September 17, 2020 Approved
Spotify 1.1.41.634 10233 Friday, September 4, 2020 Approved
Spotify 1.1.40.509 22997 Friday, August 21, 2020 Approved
Spotify 1.1.40.508 2118 Thursday, August 20, 2020 Approved
Spotify 1.1.39.612 8677 Monday, August 10, 2020 Approved
Spotify 1.1.38.558 11045 Monday, July 27, 2020 Approved
Spotify 1.1.37.690 12649 Friday, July 10, 2020 Approved
Spotify 1.1.36.734 5194 Thursday, July 2, 2020 Approved
Spotify 1.1.35.458 6789 Tuesday, June 23, 2020 Approved
Spotify 1.1.34.694 19185 Monday, June 1, 2020 Approved
Spotify 1.1.33.569 9251 Wednesday, May 20, 2020 Approved
Spotify 1.1.32.618 11053 Friday, May 8, 2020 Approved
Spotify 1.1.31.703 10621 Wednesday, April 22, 2020 Approved
Spotify 1.1.30.658 8613 Wednesday, April 8, 2020 Approved
Spotify 1.1.29.592 4832 Monday, March 30, 2020 Approved
Spotify 1.1.28.721 7926 Thursday, March 12, 2020 Approved
Spotify 1.1.27.472 4670 Monday, March 2, 2020 Approved
Spotify 1.1.26.501 5316 Monday, February 17, 2020 Approved
Spotify 1.1.25.559 6707 Thursday, January 30, 2020 Approved
Spotify 1.1.24.91 5843 Wednesday, January 15, 2020 Approved
Spotify 1.1.22.633 8695 Wednesday, December 18, 2019 Approved
Spotify 1.1.21.1654 5191 Thursday, December 5, 2019 Approved
Spotify 1.1.20.510 4346 Monday, November 25, 2019 Approved
Spotify 1.1.19.480 7633 Tuesday, November 12, 2019 Approved
Spotify 1.1.18.611 9463 Monday, October 28, 2019 Approved
Spotify 1.1.17.543 3115 Wednesday, October 23, 2019 Approved
Spotify 1.1.16.522 14876 Monday, September 30, 2019 Approved
Spotify 1.1.15.448 8986 Monday, September 16, 2019 Approved
Spotify 1.1.14.475 10473 Thursday, August 29, 2019 Approved
Spotify 1.1.12.449 12830 Thursday, August 1, 2019 Approved
Spotify 1.1.10.540 15122 Tuesday, July 2, 2019 Approved
Spotify 1.1.9.383 8979 Monday, June 17, 2019 Approved
Spotify 1.1.8.439 7000 Wednesday, June 5, 2019 Approved
Spotify 1.1.7.1376601 5163 Tuesday, May 28, 2019 Approved
Spotify 1.1.7.13766 4338 Wednesday, May 22, 2019 Approved
Spotify 1.1.6.113 5435 Monday, May 13, 2019 Approved
Spotify 1.1.5.153 1449 Friday, May 10, 2019 Approved
Spotify 1.1.0.237 29336 Thursday, February 28, 2019 Approved
Spotify 1.0.80.474 63726 Saturday, June 16, 2018 Approved
Spotify 1.0.66.478 30793 Wednesday, October 25, 2017 Approved
Spotify 1.0.65.320 2670 Tuesday, October 10, 2017 Approved
Spotify 1.0.64.399 1884 Friday, September 29, 2017 Approved
Spotify 1.0.63.617 2819 Wednesday, September 13, 2017 Approved
Spotify 1.0.62.508 1749 Tuesday, September 5, 2017 Approved
Spotify 1.0.60.492 3457 Friday, August 4, 2017 Approved
Spotify 1.0.59.395 2154 Thursday, July 20, 2017 Approved
Spotify 1.0.58.573 2169 Thursday, July 6, 2017 Approved
Spotify 1.0.57.474 2099 Thursday, June 22, 2017 Approved
Spotify 1.0.55.487 3139 Thursday, May 25, 2017 Approved
Spotify 1.0.54.1079 2021 Friday, May 12, 2017 Approved
Spotify 1.0.53.758 2646 Wednesday, April 19, 2017 Approved
Spotify 1.0.52.725 2769 Monday, April 3, 2017 Approved
Spotify 1.0.51.693 1333 Thursday, March 30, 2017 Approved
Spotify (Install) 1.0.33.106 14379 Wednesday, August 3, 2016 Approved
Spotify 0.9.8.296 17308 Tuesday, April 22, 2014 Approved
Spotify 0.9.8.150 1391 Monday, January 27, 2014 Approved
Spotify 0.9.0.129 1891 Wednesday, May 1, 2013 Approved
Spotify 0.8.4.124 1166 Thursday, October 4, 2012 Approved
Spotify 0.5.2.85 779 Tuesday, December 13, 2011 Approved
Discussion for the Spotify (Install) Package

Ground Rules:

  • This discussion is only about Spotify (Install) and the Spotify (Install) 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 Spotify (Install), 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