Downloads:
1,328,767
Downloads of v 16.0.0.401:
121,551
Last Update:
28 Apr 2024
Package Maintainer(s):
Software Author(s):
- Sonos
Tags:
sonos audio streaming- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Sonos Controller S2
- 1
- 2
- 3
16.0.0.401 | Updated: 28 Apr 2024
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,328,767
Downloads of v 16.0.0.401:
121,551
Maintainer(s):
Software Author(s):
- Sonos
Sonos Controller S2 16.0.0.401
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Sonos. The inclusion of Sonos trademark(s), if any, upon this webpage is solely to identify Sonos goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Sonos Controller S2, run the following command from the command line or from PowerShell:
To upgrade Sonos Controller S2, run the following command from the command line or from PowerShell:
To uninstall Sonos Controller S2, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download sonos-controller --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade sonos-controller -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 sonos-controller -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 sonos-controller
win_chocolatey:
name: sonos-controller
version: '16.0.0.401'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'sonos-controller' do
action :install
source 'INTERNAL REPO URL'
version '16.0.0.401'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller sonos-controller
{
Name = "sonos-controller"
Version = "16.0.0.401"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'sonos-controller':
ensure => '16.0.0.401',
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.
This package was approved as a trusted package on 01 Nov 2024.
Take total control of your home listening experience with the Sonos app. Play, control and explore your music, your way. Built for mobile, tablet and desktop, the Sonos app connects you to all the music on earth, all over your home. Version up to 11.x is Sonos Controller S1, beginning with 12.x it is Sonos Controller S2.
$packageName = 'sonos-controller'
$packageSearch = 'Sonos Controller'
$app = Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue | Where-Object { $_.DisplayName -like $packageSearch }
$app | ForEach-Object {
$exe = $_.UninstallString | Select-String -Pattern ".*exe`"?$"
$msi = $_.UninstallString | Select-String -Pattern "^MsiExec.*$"
if ($exe) {
$installerType = 'exe'
$silentArgs = '/S'
$validExitCodes = @(0)
Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($silentArgs)" `
-File "$($_.UninstallString)" `
-ValidExitCodes $validExitCodes
}
if ($msi) {
$installerType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$validExitCodes = @(0,3010)
Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($_.PSChildName) $silentArgs" `
-ValidExitCodes $validExitCodes
}
}
Log in or click on link to see number of positives.
- sonos-controller.16.0.0.401.nupkg (9e11ac2350eb) - ## / 62
- Sonos_78.1-51030.exe (03041f39d4f1) - ## / 67
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 |
---|---|---|---|---|
Sonos Controller S2 16.0.0.401 | 121551 | Sunday, April 28, 2024 | Approved | |
Sonos Controller S2 16.0.0 | 201474 | Sunday, October 29, 2023 | Approved | |
Sonos Controller S2 15.30.0 | 93957 | Wednesday, May 31, 2023 | Approved | |
Sonos Controller S2 14.20.0 | 68004 | Wednesday, December 7, 2022 | Approved | |
Sonos Controller S2 14.8.0 | 132772 | Monday, June 20, 2022 | Approved | |
Sonos Controller S2 14.0.0 | 135062 | Friday, February 4, 2022 | Approved | |
Sonos Controller S2 13.2.0 | 105422 | Friday, September 17, 2021 | Approved | |
Sonos Controller S2 13.1.2 | 69221 | Saturday, June 12, 2021 | Approved | |
Sonos Controller S2 13.0 | 56229 | Thursday, March 18, 2021 | Approved | |
Sonos Controller S2 12.2.2 | 76166 | Thursday, December 10, 2020 | Approved | |
Sonos Controller S2 12.2.0 | 15946 | Friday, November 20, 2020 | Approved | |
Sonos Controller S2 12.1.0 | 38504 | Tuesday, October 6, 2020 | Approved | |
Sonos Controller S2 12.0.5 | 20763 | Saturday, September 12, 2020 | Approved | |
Sonos Controller S2 12.0.3 | 47683 | Wednesday, July 29, 2020 | Approved | |
Sonos Controller S2 12.0.1 | 22057 | Wednesday, July 1, 2020 | Approved | |
Sonos Controller 12.0 | 13421 | Friday, June 12, 2020 | Approved | |
Sonos Controller 11.2 | 152 | Wednesday, July 1, 2020 | Approved | |
Sonos Controller 11.1 | 23274 | Friday, April 24, 2020 | Approved | |
Sonos Controller 11.0 | 17448 | Wednesday, March 18, 2020 | Approved | |
Sonos Controller 10.6.1 | 14565 | Sunday, February 2, 2020 | Approved | |
Sonos Controller 10.6 | 3347 | Monday, December 30, 2019 | Approved | |
Sonos Controller 10.5.1 | 8389 | Wednesday, November 13, 2019 | Approved | |
Sonos Controller 10.5 | 2665 | Wednesday, October 30, 2019 | Approved | |
Sonos Controller 10.4.1 | 2685 | Thursday, October 17, 2019 | Approved | |
Sonos Controller 10.4 | 6326 | Thursday, September 12, 2019 | Approved | |
Sonos Controller 10.3 | 8054 | Saturday, July 13, 2019 | Approved | |
Sonos Controller 10.2.0.2 | 7400 | Monday, May 27, 2019 | Approved | |
Sonos Controller 10.2.0 | 180 | Monday, May 27, 2019 | Approved | |
Sonos Controller 10.1.0 | 4277 | Thursday, April 4, 2019 | Approved | |
Sonos Controller 10.0.0 | 2552 | Wednesday, January 30, 2019 | Approved | |
Sonos Controller 9.30 | 1729 | Sunday, December 2, 2018 | Approved | |
Sonos Controller 9.20 | 515 | Thursday, November 1, 2018 | Approved | |
Sonos Controller 9.10 | 1337 | Friday, September 7, 2018 | Approved | |
Sonos Controller 9.01 | 864 | Friday, July 13, 2018 | Approved | |
Sonos Controller 8.5.1 | 763 | Saturday, May 19, 2018 | Approved | |
Sonos Controller 8.4 | 670 | Saturday, March 24, 2018 | Approved | |
Sonos Controller 8.3.2 | 496 | Thursday, February 15, 2018 | Approved | |
Sonos Controller 8.2.2 | 670 | Thursday, December 14, 2017 | Approved | |
Sonos Controller 8.1.1 | 553 | Thursday, November 9, 2017 | Approved | |
Sonos Controller 7.3 | 707 | Tuesday, August 1, 2017 | Approved | |
Sonos Controller 6.2.2 | 871 | Wednesday, June 1, 2016 | Approved |
Update to 16.0.0.400 (78.1.51030) - this is actually 16.0.0.400 but as I made a mistake uploading the package, the only way to fix was to increase the package number.
This package has no dependencies.
Ground Rules:
- This discussion is only about Sonos Controller S2 and the Sonos Controller S2 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 Sonos Controller S2, 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.