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:

29,377

Downloads of v 0.2.0.778:

409

Last Update:

06 Aug 2017

Package Maintainer(s):

Software Author(s):

  • galli-leo

Tags:

pvr p2p filesharing torrent nntp admin

Radarr

This is not the latest version of Radarr available.

  • 1
  • 2
  • 3

0.2.0.778 | Updated: 06 Aug 2017

Downloads:

29,377

Downloads of v 0.2.0.778:

409

Maintainer(s):

Software Author(s):

  • galli-leo

Radarr 0.2.0.778

This is not the latest version of Radarr available.

  • 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 Radarr, run the following command from the command line or from PowerShell:

>

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

>

To uninstall Radarr, 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 radarr -y --source="'INTERNAL REPO URL'" --version="'0.2.0.778'" [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 radarr -y --source="'INTERNAL REPO URL'" --version="'0.2.0.778'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install radarr
  win_chocolatey:
    name: radarr
    version: '0.2.0.778'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'radarr' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.2.0.778'
end

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


cChocoPackageInstaller radarr
{
    Name     = "radarr"
    Version  = "0.2.0.778"
    Source   = "INTERNAL REPO URL"
}

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


package { 'radarr':
  ensure   => '0.2.0.778',
  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 AdmiringWorm on 19 Aug 2017.

Description

Radarr is an independent fork of Sonarr reworked for automatically downloading movies via Usenet and BitTorrent.

The project was inspired by other Usenet/BitTorrent movie downloaders such as CouchPotato.

Features

Community


tools\chocolateyUninstall.ps1
$packageName = 'radarr'
$packageSearch = "Radarr*"
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)

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 } `
  | ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
    -FileType "$installerType" `
    -SilentArgs "$($silentArgs)" `
    -File "$($_.UninstallString.Replace('"',''))" `
    -ValidExitCodes $validExitCodes }
tools\chocolateyInstall.ps1
$packageName = 'radarr'
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$url = 'https://github.com/Radarr/Radarr/releases/download/v0.2.0.778/Radarr.develop.0.2.0.778.installer.exe'
$checksum = '890448a07df2125de0681cb7b6f60979200d149405023bbb1fa6bfde4e90e9a9'
$checksumType = 'sha256'
$validExitCodes = @(0)

Install-ChocolateyPackage -PackageName "$packageName" `
  -FileType "$installerType" `
  -SilentArgs "$silentArgs" `
  -Url "$url" `
  -ValidExitCodes $validExitCodes `
  -Checksum "$checksum" `
  -ChecksumType "$checksumType"

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
Radarr 5.4.5.8715 7 Sunday, April 7, 2024 Approved
Radarr 5.4.4.8688 244 Sunday, March 24, 2024 Approved
Radarr 5.4.3.8677 266 Sunday, March 17, 2024 Approved
Radarr 5.4.2.8667 244 Sunday, March 10, 2024 Approved
Radarr 5.4.1.8654 214 Sunday, March 3, 2024 Approved
Radarr 5.4.0.8636 198 Tuesday, February 27, 2024 Approved
Radarr 5.3.6.8612 145 Sunday, February 18, 2024 Approved
Radarr 5.3.5.8592 150 Sunday, February 11, 2024 Approved
Radarr 5.3.4.8567 167 Sunday, February 4, 2024 Approved
Radarr 5.3.3.8535 155 Sunday, January 28, 2024 Approved
Radarr 5.3.2.8504 154 Sunday, January 21, 2024 Approved
Radarr 5.3.1.8438 162 Sunday, January 14, 2024 Approved
Radarr 5.3.0.8410 154 Sunday, January 7, 2024 Approved
Radarr 5.2.6.8376 204 Sunday, December 24, 2023 Approved
Radarr 5.2.5.8361 137 Sunday, December 17, 2023 Approved
Radarr 5.2.4.8328 152 Sunday, December 10, 2023 Approved
Radarr 5.2.2.8288 274 Monday, November 20, 2023 Approved
Radarr 5.2.1.8276 29 Sunday, November 19, 2023 Approved
Radarr 5.2.0.8250 175 Sunday, November 12, 2023 Approved
Radarr 5.1.3.8246 99 Friday, November 10, 2023 Approved
Radarr 5.1.2.8207 198 Sunday, October 29, 2023 Approved
Radarr 5.1.1.8195 173 Sunday, October 22, 2023 Approved
Radarr 5.0.3.8127 209 Sunday, October 8, 2023 Approved
Radarr 5.0.3.8107 566 Sunday, October 1, 2023 Approved
Radarr 5.0.2.8103 270 Sunday, September 24, 2023 Approved
Radarr 5.0.1.7993 270 Sunday, September 3, 2023 Approved
Radarr 5.0.0.7952 254 Sunday, August 27, 2023 Approved
Radarr 4.7.5.7809 215 Monday, August 14, 2023 Approved
Radarr 4.7.4.7758 185 Sunday, August 6, 2023 Approved
Radarr 4.7.3.7731 187 Sunday, July 30, 2023 Approved
Radarr 4.7.2.7686 177 Sunday, July 23, 2023 Approved
Radarr 4.7.1.7640 186 Sunday, July 16, 2023 Approved
Radarr 4.7.0.7588 159 Sunday, July 9, 2023 Approved
Radarr 4.6.4.7568 138 Tuesday, July 4, 2023 Approved
Radarr 4.6.3.7516 183 Sunday, June 25, 2023 Approved
Radarr 4.6.2.7490 166 Sunday, June 18, 2023 Approved
Radarr 4.6.1.7456 159 Sunday, June 11, 2023 Approved
Radarr 4.6.0.7439 169 Sunday, June 4, 2023 Approved
Radarr 4.5.2.7388 182 Sunday, May 28, 2023 Approved
Radarr 4.5.2.7318 174 Sunday, May 21, 2023 Approved
Radarr 4.5.1.7282 166 Monday, May 15, 2023 Approved
Radarr 4.5.0.7106 365 Sunday, April 23, 2023 Approved
Radarr 4.4.4.7068 214 Saturday, April 15, 2023 Approved
Radarr 4.4.3.7030 177 Sunday, April 9, 2023 Approved
Radarr 4.4.2.6956 452 Saturday, February 11, 2023 Approved
Radarr 4.4.1.6926 183 Sunday, February 5, 2023 Approved
Radarr 4.4.0.6882 231 Saturday, January 21, 2023 Approved
Radarr 4.3.2.6857 247 Wednesday, January 4, 2023 Approved
Radarr 4.3.1.6822 298 Monday, December 12, 2022 Approved
Radarr 4.3.0.6671 499 Sunday, October 16, 2022 Approved
Radarr 4.2.4.6635 351 Sunday, September 25, 2022 Approved
Radarr 4.2.3.6575 260 Friday, September 9, 2022 Approved
Radarr 4.2.2.6503 298 Sunday, August 21, 2022 Approved
Radarr 4.2.1.6478 192 Sunday, August 14, 2022 Approved
Radarr 4.2.0.6438 371 Wednesday, July 20, 2022 Approved
Radarr 4.1.0.6175 534 Friday, April 15, 2022 Approved
Radarr 4.1.0.6122 174 Saturday, April 9, 2022 Approved
Radarr 4.1.0.6095 269 Wednesday, March 30, 2022 Approved
Radarr 4.0.5.5981 321 Saturday, March 5, 2022 Approved
Radarr 4.0.5.5977 163 Monday, February 28, 2022 Approved
Radarr 4.0.4.5922 330 Monday, January 31, 2022 Approved
Radarr 4.0.4.5909 172 Wednesday, January 26, 2022 Approved
Radarr 4.0.3.5879 172 Saturday, January 22, 2022 Approved
Radarr 4.0.2.5836 189 Sunday, January 16, 2022 Approved
Radarr 4.0.1.5813 198 Tuesday, January 11, 2022 Approved
Radarr 4.0.0.5745 228 Monday, January 3, 2022 Approved
Radarr 3.2.2.5080 903 Thursday, June 3, 2021 Approved
Radarr 3.2.1.5070 221 Friday, May 28, 2021 Approved
Radarr 3.2.0.5048 260 Tuesday, May 18, 2021 Approved
Radarr 3.1.1.4954 323 Tuesday, May 4, 2021 Approved
Radarr 3.1.0.4893 302 Wednesday, April 21, 2021 Approved
Radarr 3.0.2.4552 1508 Friday, February 5, 2021 Approved
Radarr 3.0.2.4369 404 Sunday, January 10, 2021 Approved
Radarr 3.0.1.4259 454 Friday, December 11, 2020 Approved
Radarr 3.0.0.4204 322 Sunday, November 29, 2020 Approved
Radarr 0.2.0.1504 938 Friday, July 3, 2020 Approved
Radarr 0.2.0.1480 1033 Monday, February 17, 2020 Approved
Radarr 0.2.0.1450 679 Tuesday, December 3, 2019 Approved
Radarr 0.2.0.1358 846 Saturday, June 29, 2019 Approved
Radarr 0.2.0.1344 539 Sunday, May 5, 2019 Approved
Radarr 0.2.0.1293 665 Saturday, February 2, 2019 Approved
Radarr 0.2.0.1217 583 Wednesday, November 14, 2018 Approved
Radarr 0.2.0.1120 594 Monday, June 11, 2018 Approved
Radarr 0.2.0.1067 389 Wednesday, April 18, 2018 Approved
Radarr 0.2.0.1066 348 Tuesday, April 17, 2018 Approved
Radarr 0.2.0.995 417 Sunday, March 4, 2018 Approved
Radarr 0.2.0.980 355 Wednesday, February 21, 2018 Approved
Radarr 0.2.0.935 426 Tuesday, February 6, 2018 Approved
Radarr 0.2.0.910 519 Friday, December 15, 2017 Approved
Radarr 0.2.0.870 489 Wednesday, October 18, 2017 Approved
Radarr 0.2.0.852 391 Sunday, September 10, 2017 Approved
Radarr 0.2.0.846 375 Tuesday, August 29, 2017 Approved
Radarr 0.2.0.778 409 Sunday, August 6, 2017 Approved

Program

Package


This package has no dependencies.

Discussion for the Radarr Package

Ground Rules:

  • This discussion is only about Radarr and the Radarr 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 Radarr, 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