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:

107,357

Downloads of v 7.39.0:

1,032

Last Update:

14 May 2025

Package Maintainer(s):

Software Author(s):

  • Cockos Incorporated

Tags:

Reaper

  • 1
  • 2
  • 3

7.39.0 | Updated: 14 May 2025

Downloads:

107,357

Downloads of v 7.39.0:

1,032

Maintainer(s):

Software Author(s):

  • Cockos Incorporated

Reaper 7.39.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Cockos Incorporated. The inclusion of Cockos Incorporated trademark(s), if any, upon this webpage is solely to identify Cockos Incorporated 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 Reaper, run the following command from the command line or from PowerShell:

>

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

>

To uninstall Reaper, 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 reaper -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 reaper -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 reaper
  win_chocolatey:
    name: reaper
    version: '7.39.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'reaper' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '7.39.0'
end

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


cChocoPackageInstaller reaper
{
    Name     = "reaper"
    Version  = "7.39.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'reaper':
  ensure   => '7.39.0',
  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 as a trusted package on 15 May 2025.

Description

REAPER is a complete digital audio production application for Windows and OS X, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset.


tools\chocolateyinstall.ps1

$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url32 = 'https://reaper.fm/files/7.x/reaper739-install.exe'
$checksum32 = '9e255127aeb0e0a37b2508fd44a045d7c87f8560a9dfdc0c4761d6b611387b85'
$url64 = 'https://reaper.fm/files/7.x/reaper739_x64-install.exe'
$checksum64 = '894c6c943d2d7fb9843f7eff6f5f573919b08381961d67f1abe4befed7098c21'

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  unzipLocation  = $toolsDir
  fileType       = 'EXE'
  url            = $url32
  url64bit       = $url64

  softwareName   = 'reaper*'

  checksum       = $checksum32
  checksumType   = 'sha256'
  checksum64     = $checksum64
  checksumType64 = 'sha256'


  silentArgs     = '/S'
  validExitCodes = @(0, 1223)
}

Install-ChocolateyPackage @packageArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  softwareName   = 'reaper*'
  fileType       = 'EXE'
  silentArgs     = '/S'
  validExitCodes = @(0)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($key.Count -eq 1) {
  $key | % {
    $packageArgs['file'] = "$($_.UninstallString)"

    if ($packageArgs['fileType'] -eq 'MSI') {
      $packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"

      $packageArgs['file'] = ''
    }
    else {
    }

    Uninstall-ChocolateyPackage @packageArgs
  }
}
elseif ($key.Count -eq 0) {
  Write-Warning "$($packageArgs['packageName']) has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % { Write-Warning "- $($_.DisplayName)" }
}

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
Reaper 7.38.0 387 Saturday, May 10, 2025 Approved
Reaper 7.37.0 527 Monday, April 28, 2025 Approved
Reaper 7.36.0 377 Wednesday, April 23, 2025 Approved
Reaper 7.35.0 720 Tuesday, April 1, 2025 Approved
Reaper 7.8.29 1471 Wednesday, January 8, 2025 Approved
Reaper 7.8.28 816 Tuesday, December 17, 2024 Approved
Reaper 7.8.25 1225 Tuesday, October 22, 2024 Approved
Reaper 7.8.22 1336 Monday, August 26, 2024 Approved
Reaper 7.8.21 105 Sunday, August 25, 2024 Approved
Reaper 7.8.20 302 Thursday, August 22, 2024 Approved
Reaper 7.8.19 934 Wednesday, July 24, 2024 Approved
Reaper 7.8.18 815 Sunday, July 7, 2024 Approved
Reaper 7.8.17 642 Thursday, June 27, 2024 Approved
Reaper 7.8.16 849 Friday, May 31, 2024 Approved
Reaper 7.8.15 1172 Thursday, April 18, 2024 Approved
Reaper 7.8.14 817 Sunday, April 7, 2024 Approved
Reaper 7.8.12 646 Thursday, March 28, 2024 Approved
Reaper 7.8.11 1494 Monday, February 12, 2024 Approved
Reaper 7.8.10 291 Saturday, February 10, 2024 Approved
Reaper 7.8.9 952 Saturday, January 20, 2024 Approved
Reaper 7.8.0 622 Monday, January 15, 2024 Approved
Reaper 7.7.0 1131 Saturday, December 16, 2023 Approved
Reaper 7.6.0 945 Friday, December 1, 2023 Approved
Reaper 7.5.0 868 Saturday, November 18, 2023 Approved
Reaper 7.3.0 760 Wednesday, November 8, 2023 Approved
Reaper 7.2.0 783 Friday, October 27, 2023 Approved
Reaper 7.1.1 695 Friday, October 20, 2023 Approved
Reaper 7.1.0 390 Wednesday, October 18, 2023 Approved
Reaper 6.83.0 556 Saturday, October 14, 2023 Approved
Reaper 6.82.0 1226 Friday, September 8, 2023 Approved
Reaper 6.81.0 1732 Sunday, July 9, 2023 Approved
Reaper 6.80.0 898 Saturday, June 17, 2023 Approved
Reaper 6.79 1480 Wednesday, April 26, 2023 Approved
Reaper 6.78 1364 Wednesday, March 15, 2023 Approved
Reaper 6.77 523 Sunday, March 12, 2023 Approved
Reaper 6.76 779 Wednesday, March 1, 2023 Approved
Reaper 6.75 1046 Saturday, February 4, 2023 Approved
Reaper 6.74 241 Friday, February 3, 2023 Approved
Reaper 6.72 1282 Tuesday, December 20, 2022 Approved
Reaper 6.71 871 Friday, December 2, 2022 Approved
Reaper 6.70 663 Friday, November 25, 2022 Approved
Reaper 6.69 1179 Friday, October 28, 2022 Approved
Reaper 6.68 1344 Saturday, September 24, 2022 Approved
Reaper 6.66 1048 Sunday, August 28, 2022 Approved
Reaper 6.65 725 Saturday, August 13, 2022 Approved
Reaper 6.64 985 Sunday, July 17, 2022 Approved
Reaper 6.63 654 Tuesday, July 5, 2022 Approved
Reaper 6.62 281 Sunday, July 3, 2022 Approved
Reaper 6.61 685 Saturday, June 18, 2022 Approved
Reaper 6.60 555 Friday, June 10, 2022 Approved
Reaper 6.59 517 Saturday, June 4, 2022 Approved
Reaper 6.58 720 Friday, May 20, 2022 Approved
Reaper 6.57 637 Sunday, May 8, 2022 Approved
Reaper 6.56 569 Friday, April 29, 2022 Approved
Reaper 6.55 501 Sunday, April 24, 2022 Approved
Reaper 6.54 228 Friday, April 22, 2022 Approved
Reaper 6.53 855 Wednesday, March 30, 2022 Approved
Reaper 6.52 428 Sunday, March 27, 2022 Approved
Reaper 6.51 826 Monday, March 7, 2022 Approved
Reaper 6.50 302 Saturday, March 5, 2022 Approved
Reaper 6.49 553 Saturday, February 26, 2022 Approved
Reaper 6.47 681 Sunday, February 13, 2022 Approved
Reaper 6.46 839 Thursday, January 20, 2022 Approved
Reaper 6.45 621 Monday, January 10, 2022 Approved
Reaper 6.43 735 Thursday, December 23, 2021 Approved
Reaper 6.42 1010 Wednesday, November 17, 2021 Approved
Reaper 6.41 490 Friday, November 12, 2021 Approved
Reaper 6.40 700 Sunday, October 31, 2021 Approved
Reaper 6.39 205 Saturday, October 30, 2021 Approved
Reaper 6.38 695 Monday, October 18, 2021 Approved
Reaper 6.37 285 Sunday, October 17, 2021 Approved
Reaper 6.36 1133 Saturday, September 4, 2021 Approved
Reaper 6.35 450 Sunday, August 29, 2021 Approved
Reaper 6.34 759 Tuesday, August 10, 2021 Approved
Reaper 6.33 615 Tuesday, July 27, 2021 Approved
Reaper 6.32 737 Friday, July 9, 2021 Approved
Reaper 6.31 151 Friday, July 9, 2021 Approved
Reaper 6.30 384 Tuesday, July 6, 2021 Approved
Reaper 6.29 987 Tuesday, May 25, 2021 Approved
Reaper 6.28 842 Tuesday, April 27, 2021 Approved
Reaper 6.27 903 Monday, April 12, 2021 Approved
Reaper 6.26 561 Friday, April 2, 2021 Approved
Reaper 6.25 794 Sunday, March 14, 2021 Approved
Reaper 6.24 618 Friday, March 5, 2021 Approved
Reaper 6.23 950 Tuesday, February 9, 2021 Approved
Reaper 6.21 769 Monday, January 25, 2021 Approved
Reaper 6.20 365 Friday, January 22, 2021 Approved
Reaper 6.19 923 Sunday, December 20, 2020 Approved
Reaper 6.18 750 Wednesday, December 2, 2020 Approved
Reaper 6.17 246 Tuesday, December 1, 2020 Approved
Reaper 6.16 437 Saturday, November 28, 2020 Approved
Reaper 6.15 934 Wednesday, October 21, 2020 Approved
Reaper 6.14 825 Tuesday, September 22, 2020 Approved
Reaper 6.13 971 Friday, July 24, 2020 Approved
Reaper 6.12 775 Tuesday, June 16, 2020 Approved
Reaper 6.12-c 176 Tuesday, June 16, 2020 Approved
Reaper 6.11 639 Monday, May 25, 2020 Approved
Reaper 6.10 612 Sunday, May 10, 2020 Approved
Reaper 6.09 486 Tuesday, April 28, 2020 Approved
Reaper 6.08 671 Saturday, April 4, 2020 Approved
Reaper 6.07 405 Monday, March 30, 2020 Approved
Reaper 6.05 627 Friday, March 6, 2020 Approved
Reaper 6.04 465 Friday, February 21, 2020 Approved
Reaper 6.03 722 Tuesday, January 14, 2020 Approved
Reaper 6.02 595 Thursday, December 19, 2019 Approved
Reaper 6.01 336 Monday, December 16, 2019 Approved
Reaper 6.0 197 Thursday, December 5, 2019 Approved
Reaper 5.987 551 Wednesday, November 20, 2019 Approved
Reaper 5.985 327 Sunday, November 17, 2019 Approved
Reaper 5.984 552 Saturday, October 12, 2019 Approved
Reaper 5.983 583 Friday, August 30, 2019 Approved
Reaper 5.982 426 Monday, August 19, 2019 Approved
Reaper 5.981 520 Monday, July 22, 2019 Approved
Reaper 5.980 353 Monday, July 15, 2019 Approved
Reaper 5.979 477 Thursday, June 27, 2019 Approved
Reaper 5.978 538 Friday, May 17, 2019 Approved
Reaper 5.977 392 Wednesday, May 8, 2019 Approved
Reaper 5.976 299 Saturday, May 4, 2019 Approved
Reaper 5.975 240 Saturday, May 4, 2019 Approved
Reaper 5.974 461 Sunday, April 14, 2019 Approved
Reaper 5.973 473 Friday, March 15, 2019 Approved
Reaper 5.971 422 Tuesday, February 26, 2019 Approved
Reaper 5.965 614 Saturday, December 22, 2018 Approved
Reaper 5.963 388 Monday, December 10, 2018 Approved
Reaper 5.961 496 Wednesday, October 31, 2018 Approved
Reaper 5.95 407 Monday, September 17, 2018 Approved
Reaper 5.93 482 Saturday, July 21, 2018 Approved
Reaper 5.92 436 Saturday, July 7, 2018 Approved
Reaper 5.80 527 Sunday, May 6, 2018 Approved
Reaper 5.78 515 Friday, March 30, 2018 Approved
Reaper 5.77 499 Saturday, March 10, 2018 Approved
Reaper 5.76 477 Monday, February 26, 2018 Approved
Reaper 5.70 624 Sunday, December 17, 2017 Approved
Reaper 5.62 471 Sunday, November 19, 2017 Approved
Reaper 5.61 493 Tuesday, October 31, 2017 Approved
Reaper 5.52 480 Tuesday, October 10, 2017 Approved
Reaper 5.51 496 Monday, October 2, 2017 Approved
Reaper 5.50 459 Monday, September 18, 2017 Approved
Reaper 5.40 659 Friday, April 7, 2017 Approved
Reaper 5.35 476 Friday, March 24, 2017 Approved
Reaper 5.22 506 Friday, August 5, 2016 Approved
Reaper 5.20 431 Wednesday, May 18, 2016 Approved
Reaper 5.18 481 Friday, April 15, 2016 Approved
Reaper 5.16 508 Sunday, March 6, 2016 Approved
Reaper 5.15 478 Sunday, February 14, 2016 Approved
Reaper 5.04 531 Sunday, October 4, 2015 Approved
Reaper 5.01 492 Sunday, August 30, 2015 Approved
Reaper 5.1 452 Saturday, November 21, 2015 Approved
Reaper 5.0 503 Sunday, August 16, 2015 Approved
Reaper 4.78 629 Thursday, May 7, 2015 Approved
Reaper 4.77 517 Tuesday, February 10, 2015 Approved
Reaper 4.76 510 Tuesday, January 6, 2015 Approved
Reaper 4.75 480 Monday, November 10, 2014 Approved
Reaper 4.71 493 Thursday, July 17, 2014 Approved
Reaper 4.62 468 Sunday, May 25, 2014 Approved
Reaper 4.61 508 Sunday, March 23, 2014 Approved
Reaper 4.58 464 Tuesday, December 17, 2013 Approved
Reaper 4.57 507 Monday, November 25, 2013 Approved
Reaper 4.55 490 Thursday, October 31, 2013 Approved
Reaper 4.54.20131027 505 Sunday, October 27, 2013 Approved
Reaper 4.7 419 Sunday, July 13, 2014 Approved

This package has no dependencies.

Discussion for the Reaper Package

Ground Rules:

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