Downloads:
124,838
Downloads of v 21.0.0-beta2:
81
Last Update:
10 Dec 2023
Package Maintainer(s):
Software Author(s):
- XBMC Foundation
Tags:
kodi admin xbmc media mediaserver video dlna music podcastKodi
This is a prerelease version of Kodi.
- 1
- 2
- 3
21.0.0-beta2 | Updated: 10 Dec 2023
Downloads:
124,838
Downloads of v 21.0.0-beta2:
81
Maintainer(s):
Software Author(s):
- XBMC Foundation
Kodi 21.0.0-beta2
This is a prerelease version of Kodi.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by XBMC Foundation. The inclusion of XBMC Foundation trademark(s), if any, upon this webpage is solely to identify XBMC Foundation goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Kodi, run the following command from the command line or from PowerShell:
To upgrade Kodi, run the following command from the command line or from PowerShell:
To uninstall Kodi, 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 kodi --internalize --version=21.0.0-beta2 --pre --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 kodi -y --source="'INTERNAL REPO URL'" --version="'21.0.0-beta2'" --prerelease [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 kodi -y --source="'INTERNAL REPO URL'" --version="'21.0.0-beta2'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install kodi
win_chocolatey:
name: kodi
version: '21.0.0-beta2'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'kodi' do
action :install
source 'INTERNAL REPO URL'
version '21.0.0-beta2'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller kodi
{
Name = "kodi"
Version = "21.0.0-beta2"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'kodi':
ensure => '21.0.0-beta2',
install_options => ['--prerelease'],
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 10 Dec 2023.
Kodi (formerly known as XBMC) is an award-winning free and open source (GPL) software media player and entertainment hub that can be installed on Linux, OSX, Windows, iOS and Android, featuring a 10-foot user interface for use with televisions and remote controls.
It allows users to play and view most videos, music, podcasts, and other digital media files from local and network storage media and the internet.
$ErrorActionPreference = 'Stop'
# *** Automatically filled ***
$packageName = 'kodi'
$softwareName = 'Kodi*'
$fileType = 'exe'
$silentArgs = '/S'
$validExitCodes = @(0)
# *** Automatically filled ***
[array] $key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
function Get-File ([string] $path) {
# Remove quotes and trailing arguments if any
if (!$path) { return }
if (Test-Path $path) { return $path }
function Split-CommandLine ([string] $path) { $path }
$path = Invoke-Expression "Split-CommandLine $path"
if (Test-Path $path) { return $path }
}
$key | ForEach-Object {
$file = Get-File $_.UninstallString
if ($file) {
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $fileType `
-SilentArgs $silentArgs `
-ValidExitCodes $validExitCodes `
-File $file | Out-Null
} else {
Write-Warning "Unknown uninstaller: $($_.UninstallString)"
}
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} else {
Write-Warning "$($key.Count) matches found for $packageName!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please contact package maintainer the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
Log in or click on link to see number of positives.
- kodi.21.0.0-beta2.nupkg (b3f9d3919356) - ## / 64
- kodi-21.0-Omega_beta2-x64.exe (6937ea333cce) - ## / 56
- kodi-21.0-Omega_beta2-x86.exe (6adc4fdd2212) - ## / 57
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 |
---|---|---|---|---|
Kodi 21.1.0 | 3488 | Sunday, August 18, 2024 | Approved | |
Kodi 21.0.0 | 3970 | Saturday, April 6, 2024 | Approved | |
Kodi 21.0.0-rc2 | 62 | Monday, March 18, 2024 | Approved | |
Kodi 21.0.0-rc1 | 55 | Thursday, March 7, 2024 | Approved | |
Kodi 21.0.0-beta3 | 48 | Thursday, February 15, 2024 | Approved | |
Kodi 21.0.0-beta2 | 81 | Sunday, December 10, 2023 | Approved | |
Kodi 21.0.0-beta1 | 80 | Wednesday, October 18, 2023 | Approved | |
Kodi 20.5.0 | 2286 | Sunday, March 3, 2024 | Approved | |
Kodi 20.4.0 | 1905 | Sunday, February 11, 2024 | Approved | |
Kodi 20.3.0 | 2235 | Wednesday, January 10, 2024 | Approved | |
Kodi 20.2.0 | 5431 | Thursday, June 29, 2023 | Approved | |
Kodi 20.1 | 3827 | Sunday, March 12, 2023 | Approved | |
Kodi 20.0 | 2979 | Monday, January 16, 2023 | Approved | |
Kodi 20.0-rc2 | 77 | Monday, December 19, 2022 | Approved | |
Kodi 20.0-rc1 | 69 | Sunday, December 11, 2022 | Approved | |
Kodi 20.0-beta1 | 89 | Tuesday, November 8, 2022 | Approved | |
Kodi 19.5 | 1989 | Monday, December 26, 2022 | Approved | |
Kodi 19.4 | 7032 | Thursday, March 3, 2022 | Approved | |
Kodi 19.3 | 5102 | Sunday, October 24, 2021 | Approved | |
Kodi 19.2 | 2182 | Friday, October 8, 2021 | Exempted | |
Kodi 19.1 | 6582 | Sunday, May 9, 2021 | Approved | |
Kodi 19.0 | 4917 | Wednesday, February 24, 2021 | Approved | |
Kodi 19.0-rc1 | 223 | Saturday, January 16, 2021 | Approved | |
Kodi 19.0-beta2 | 197 | Monday, December 7, 2020 | Approved | |
Kodi 19.0-beta1 | 187 | Tuesday, November 17, 2020 | Approved | |
Kodi 18.9 | 5864 | Saturday, October 24, 2020 | Approved | |
Kodi 18.8.0.20200913 | 2914 | Sunday, September 13, 2020 | Approved | |
Kodi 18.7 | 4796 | Wednesday, May 20, 2020 | Approved | |
Kodi 18.6 | 4290 | Monday, March 2, 2020 | Approved | |
Kodi 18.5 | 4115 | Saturday, November 16, 2019 | Approved | |
Kodi 18.4.0.20190904 | 3172 | Wednesday, September 4, 2019 | Approved | |
Kodi 18.4 | 1267 | Saturday, August 31, 2019 | Approved | |
Kodi 18.3.0.20190629 | 2762 | Saturday, June 29, 2019 | Approved | |
Kodi 18.3 | 243 | Saturday, June 29, 2019 | Approved | |
Kodi 18.2 | 2658 | Sunday, May 5, 2019 | Approved | |
Kodi 18.2-rc1 | 251 | Monday, April 15, 2019 | Approved | |
Kodi 18.1 | 2861 | Sunday, February 17, 2019 | Approved | |
Kodi 18.1-rc1 | 238 | Monday, February 11, 2019 | Approved | |
Kodi 18.0 | 1832 | Tuesday, January 29, 2019 | Approved | |
Kodi 17.6.0.20171213 | 7400 | Wednesday, December 13, 2017 | Approved | |
Kodi 17.6 | 2190 | Saturday, November 18, 2017 | Approved | |
Kodi 17.5 | 1502 | Tuesday, October 24, 2017 | Approved | |
Kodi 17.4 | 1947 | Monday, August 28, 2017 | Approved | |
Kodi 17.3 | 2358 | Wednesday, June 7, 2017 | Approved | |
Kodi 17.1 | 4506 | Friday, February 24, 2017 | Approved | |
Kodi 17.0 | 1339 | Tuesday, February 7, 2017 | Approved | |
Kodi 16.1 | 3449 | Sunday, April 24, 2016 | Approved | |
Kodi 16.0 | 1616 | Saturday, February 20, 2016 | Approved | |
Kodi 15.2 | 1206 | Tuesday, November 17, 2015 | Approved | |
Kodi 15.1 | 594 | Thursday, September 3, 2015 | Approved | |
Kodi 15.0 | 638 | Wednesday, July 22, 2015 | Approved | |
Kodi 14.2 | 1681 | Wednesday, April 1, 2015 | Approved | |
Kodi 14.1.0.20150310 | 1269 | Tuesday, March 10, 2015 | Approved | |
Kodi 14.1 | 717 | Monday, February 16, 2015 | Approved |
Copyright © Team XBMC
This package has no dependencies.
Ground Rules:
- This discussion is only about Kodi and the Kodi 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 Kodi, 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.