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:

379,403

Downloads of v 6.31.0.11415:

23,179

Last Update:

11 Dec 2024

Package Maintainer(s):

Software Author(s):

  • Piriform

Tags:

ccleaner system cleanup portable freeware trial registry admin

CCleaner (Portable)

  • 1
  • 2
  • 3

6.31.0.11415 | Updated: 11 Dec 2024

Downloads:

379,403

Downloads of v 6.31.0.11415:

23,179

Maintainer(s):

Software Author(s):

  • Piriform

CCleaner (Portable) 6.31.0.11415

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

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install CCleaner (Portable), run the following command from the command line or from PowerShell:

>

To upgrade CCleaner (Portable), run the following command from the command line or from PowerShell:

>

To uninstall CCleaner (Portable), 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 ccleaner.portable -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 ccleaner.portable -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 ccleaner.portable
  win_chocolatey:
    name: ccleaner.portable
    version: '6.31.0.11415'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'ccleaner.portable' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.31.0.11415'
end

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


cChocoPackageInstaller ccleaner.portable
{
    Name     = "ccleaner.portable"
    Version  = "6.31.0.11415"
    Source   = "INTERNAL REPO URL"
}

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


package { 'ccleaner.portable':
  ensure   => '6.31.0.11415',
  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...

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 11 Dec 2024.

Description

The number-one tool for cleaning your Windows PC.

It protects your privacy online and makes your computer faster and more secure.

Notes

This package installs CCleaner without additional adware.


tools\chocolateyBeforeModify.ps1
Get-Process CCleaner* | Stop-Process -Force -ErrorAction SilentlyContinue

$settings = Get-Item "$toolsPath\ccleaner.ini" -ErrorAction SilentlyContinue
$ccleaner_temp = "$env:USERPROFILE\ccleaner_temp"

if($settings -ne $null)
    {
    Move-Item "$settings" $ccleaner_temp -Force
    }
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'

$packageName = 'ccleaner.portable'
$url32       = 'https://download.ccleaner.com/portable/ccsetup631.zip'
$checksum32  = 'b46536583aeb52000a5caef55e6a0b0dc05bfc93841bb08d59049ad919fe7ad3'
$toolsPath   = Split-Path $MyInvocation.MyCommand.Definition
$bits = Get-ProcessorBits
$ccleaner_temp = "$env:USERPROFILE\ccleaner_temp"

$packageArgs = @{
  packageName    = $packageName
  url            = $url32
  checksum       = $checksum32
  checksumType   = 'sha256'
  unzipLocation  = $toolsPath
}


Install-ChocolateyZipPackage @packageArgs

if($bits -ne 64)
    {
    $FileFullPath = get-childitem $toolsPath -recurse -include 'CCleaner.exe' | select -First 1
    }
else
    {
    $FileFullPath = get-childitem $toolsPath -recurse -include 'CCleaner64.exe' | select -First 1
    }

Install-ChocolateyShortcut -shortcutFilePath "$env:ALLUSERSPROFILE\Microsoft\Windows\Start Menu\Programs\CCleaner.lnk" $FileFullPath -WorkingDirectory "$toolsPath"

if(Test-Path $ccleaner_temp) {
    Move-Item (Get-ChildItem $ccleaner_temp) -Destination $toolsPath -Force
}
tools\chocolateyuninstall.ps1
Get-Process CCleaner* | Stop-Process -Force -ErrorAction SilentlyContinue
$icon_name = (Get-ChildItem "$env:ALLUSERSPROFILE\Microsoft\Windows\Start Menu\Programs\" -Filter "CCleaner.lnk" -ErrorAction SilentlyContinue).FullName
Remove-Item $icon_name -ErrorAction SilentlyContinue

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
CCleaner (Portable) 6.30.0.11385 7830 Wednesday, November 13, 2024 Approved
CCleaner (Portable) 6.29.0.11342 11750 Wednesday, October 16, 2024 Approved
CCleaner (Portable) 6.28.0.11297 8793 Monday, September 23, 2024 Approved
CCleaner (Portable) 6.27.0.11214 5881 Thursday, September 12, 2024 Approved
CCleaner (Portable) 6.26.0.11169 9612 Monday, July 29, 2024 Approved
CCleaner (Portable) 6.25.0.11093 13555 Tuesday, June 25, 2024 Approved
CCleaner (Portable) 6.22.0.10977 25498 Wednesday, March 13, 2024 Approved
CCleaner (Portable) 6.21.0.10918 6230 Wednesday, February 14, 2024 Approved
CCleaner (Portable) 6.20.0.10897 7157 Wednesday, January 17, 2024 Approved
CCleaner (Portable) 6.19.0.10858 4412 Wednesday, December 13, 2023 Approved
CCleaner (Portable) 6.18.10838.231203 2597 Sunday, December 3, 2023 Approved
CCleaner (Portable) 6.18.0.10824 3471 Wednesday, November 15, 2023 Approved
CCleaner (Portable) 6.17.0.10746 9230 Wednesday, October 18, 2023 Approved
CCleaner (Portable) 6.16.0.10662 9126 Wednesday, September 13, 2023 Approved
CCleaner (Portable) 6.15.0.10623 4303 Wednesday, August 23, 2023 Approved
CCleaner (Portable) 6.14.0.10584 7264 Wednesday, July 19, 2023 Approved
CCleaner (Portable) 6.13.0.10517 9225 Wednesday, June 14, 2023 Approved
CCleaner (Portable) 6.12.0.10490 20138 Thursday, May 18, 2023 Approved
CCleaner (Portable) 6.11.0.10455 2722 Tuesday, May 2, 2023 Approved
CCleaner (Portable) 6.11.0.10435 1910 Monday, April 24, 2023 Approved
CCleaner (Portable) 6.10.0.10347 3853 Wednesday, March 15, 2023 Approved
CCleaner (Portable) 6.09.0.10300 3088 Tuesday, February 14, 2023 Approved
CCleaner (Portable) 6.08.0.10255 3533 Wednesday, January 18, 2023 Approved
CCleaner (Portable) 6.07.0.10191 4094 Wednesday, December 14, 2022 Approved
CCleaner (Portable) 6.06.0.10144 3417 Wednesday, November 16, 2022 Approved
CCleaner (Portable) 6.05.0.10110 3072 Monday, October 24, 2022 Approved
CCleaner (Portable) 6.04.0.10044 4195 Tuesday, September 20, 2022 Approved
CCleaner (Portable) 6.03.0.10002 5219 Tuesday, August 30, 2022 Approved
CCleaner (Portable) 5.92.0.9652 8745 Sunday, April 24, 2022 Approved
CCleaner (Portable) 5.91.0.9537 3521 Wednesday, March 16, 2022 Approved
CCleaner (Portable) 5.90.0.9443 5221 Wednesday, February 16, 2022 Approved
CCleaner (Portable) 5.89.0.9401 3392 Tuesday, January 25, 2022 Approved
CCleaner (Portable) 5.89.0.9385 1264 Monday, January 24, 2022 Approved
CCleaner (Portable) 5.88.0.9346 4454 Tuesday, December 14, 2021 Approved
CCleaner (Portable) 5.87.0.9306 4766 Tuesday, November 16, 2021 Approved
CCleaner (Portable) 5.86.0.9258 3107 Wednesday, October 20, 2021 Approved
CCleaner (Portable) 5.85.0.9170 4895 Tuesday, September 14, 2021 Approved
CCleaner (Portable) 5.84.0.9143 2455 Wednesday, September 8, 2021 Approved
CCleaner (Portable) 5.84.0.9126 3247 Wednesday, August 18, 2021 Approved
CCleaner (Portable) 5.83.0.9050 3605 Tuesday, July 20, 2021 Approved
CCleaner (Portable) 5.82.0.8950 3387 Thursday, June 17, 2021 Approved
CCleaner (Portable) 5.81.0.8895 2513 Tuesday, June 8, 2021 Approved
CCleaner (Portable) 5.80.0.8743 2764 Tuesday, May 25, 2021 Approved
CCleaner (Portable) 5.79.0.8704 2696 Thursday, April 29, 2021 Approved
CCleaner (Portable) 5.78.0.8558 2719 Thursday, March 25, 2021 Approved
CCleaner (Portable) 5.77.0.8521 11311 Thursday, March 4, 2021 Approved
CCleaner (Portable) 5.77.0.8448 2337 Thursday, February 18, 2021 Approved
CCleaner (Portable) 5.76.0.8269 4531 Wednesday, January 13, 2021 Approved
CCleaner (Portable) 5.75.0.8238 2829 Thursday, December 10, 2020 Approved
CCleaner (Portable) 5.74.0.8198 2508 Wednesday, November 11, 2020 Approved
CCleaner (Portable) 5.74.0.8184 1681 Monday, November 9, 2020 Approved
CCleaner (Portable) 5.73.0.8130 2207 Monday, October 26, 2020 Approved
CCleaner (Portable) 5.72.0.7994 2912 Wednesday, September 23, 2020 Approved
CCleaner (Portable) 5.71.0.7971 1911 Monday, September 14, 2020 Approved
CCleaner (Portable) 5.70.0.7909 2715 Thursday, August 6, 2020 Approved
CCleaner (Portable) 5.69.0.7865 1752 Tuesday, July 21, 2020 Approved
CCleaner (Portable) 5.68.0.7820 1976 Tuesday, June 23, 2020 Approved
CCleaner (Portable) 5.67.0.7763 1858 Thursday, May 28, 2020 Approved
CCleaner (Portable) 5.66.0.7716 1935 Friday, May 1, 2020 Approved
CCleaner (Portable) 5.66.0.7705 919 Wednesday, April 29, 2020 Approved
CCleaner (Portable) 5.65.0.7632 1922 Tuesday, March 24, 2020 Approved
CCleaner (Portable) 5.64.0.7613 2501 Tuesday, March 3, 2020 Approved
CCleaner (Portable) 5.63.0.7540 4898 Wednesday, October 16, 2019 Approved
CCleaner (Portable) 5.62.0.7538 1892 Thursday, October 3, 2019 Approved
CCleaner (Portable) 5.61.0.7392 2350 Tuesday, August 20, 2019 Approved
CCleaner (Portable) 5.60.0.7307 3081 Tuesday, July 16, 2019 Approved
CCleaner (Portable) 5.59.0.7230 2562 Tuesday, June 25, 2019 Approved
CCleaner (Portable) 5.58.0.7209 1990 Thursday, June 6, 2019 Approved
CCleaner (Portable) 5.57.0.7182 1808 Tuesday, May 14, 2019 Approved
CCleaner (Portable) 5.56.0.7144 2000 Tuesday, April 9, 2019 Approved
CCleaner (Portable) 5.55.0.7108 1818 Tuesday, March 12, 2019 Approved
CCleaner (Portable) 5.54.0.7088 1248 Monday, March 4, 2019 Approved
CCleaner (Portable) 5.53.0.7034 1375 Tuesday, February 19, 2019 Approved
CCleaner (Portable) 5.52.0.6967 1553 Thursday, January 17, 2019 Approved
CCleaner (Portable) 5.51.0.6939 973 Thursday, December 13, 2018 Approved
CCleaner (Portable) 5.50.0.6911 811 Thursday, November 29, 2018 Approved
CCleaner (Portable) 5.49.0.6856 857 Monday, November 12, 2018 Approved
CCleaner (Portable) 5.48.0.6834 573 Friday, October 26, 2018 Approved
CCleaner (Portable) 5.47.6716.181010 556 Friday, October 12, 2018 Approved
CCleaner (Portable) 5.47.6716 692 Thursday, September 20, 2018 Approved
CCleaner (Portable) 5.47.6701 537 Tuesday, September 18, 2018 Approved
CCleaner (Portable) 5.46.6652 639 Thursday, August 30, 2018 Approved
CCleaner (Portable) 5.45.6611 893 Tuesday, July 24, 2018 Approved
CCleaner (Portable) 5.44.6575 684 Tuesday, June 26, 2018 Approved
CCleaner (Portable) 5.43.6522 959 Tuesday, May 29, 2018 Approved
CCleaner (Portable) 5.42.6499.20180518 486 Saturday, May 19, 2018 Approved
CCleaner (Portable) 5.42.6499 480 Wednesday, May 16, 2018 Approved
CCleaner (Portable) 5.42.6495 565 Monday, April 23, 2018 Approved
CCleaner (Portable) 5.41.6446 568 Tuesday, March 13, 2018 Approved
CCleaner (Portable) 5.40.6411 716 Tuesday, February 13, 2018 Approved
CCleaner (Portable) 5.39.6399 546 Tuesday, January 16, 2018 Approved
CCleaner Portable 5.38.6357 534 Tuesday, December 19, 2017 Approved
CCleaner Portable 5.37.6309 619 Wednesday, November 15, 2017 Approved
CCleaner Portable 5.36.6278 528 Tuesday, October 24, 2017 Approved
CCleaner Portable 5.35.6210 597 Wednesday, September 20, 2017 Approved
CCleaner Portable 5.34.6207 471 Tuesday, September 12, 2017 Approved
CCleaner Portable 5.32.6129 620 Tuesday, July 11, 2017 Approved
CCleaner Portable 5.31.6105 451 Friday, June 30, 2017 Approved

This package has no dependencies.

Discussion for the CCleaner (Portable) Package

Ground Rules:

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