CCleaner over reports recycle bin bytes

I've been using CCleaner for years, and I recently encountered an issue. CCleaner over states the number of bytes it has emptied from the recycling bin. Even when the recycling bin is empty, CCleaner reports that it has removed 1,449,649kbytes from the recycling bin. I've deleted CCleaner and reloaded a newer version but no change. Why?

You probably have a corrupted recycle bin - it happens and most people don't notice unless using a cleaner.

Luckily it is very quick and easy to fix, see this:

Wow! I clicked on the clink and did as My recycle bin is now empty!!! Thanks!

CCleaner always cleans 4.5 Gb from the recycle bin even when it is empty. I tried the suggestion in this topic...

Right-click on the "Command Prompt" entry > click "Run as Administrator"

  1. Type and enter:
    	rd /s /q C:\$Recycle.bin
    
    
    	 
    </li>
    <li>
    	I get this response
    
    
    	Remove-Item: A positional parameter cannot be found that accepts argument '/q'.
    
    
    	
    
    
    	So, how do I fix this situation, which you say is probably a corrupt recycle bin?
    </li>
    <li>
    	Thank you, MickD
    </li>
    

In case it helps

https://www.tenforums.com/general-support/125956-how-delete-recreate-my-corrupt-recycle-bins.html#post1562347

Thank you. Attached is screen shot of result I get from trying on drive c:

using administrator account...

rd /s /q <drive letter>:\$Recycle.bin

I hi-lited the relevant part in yellow :)

MickD

RecycleCorrupt.png

Your screenshot shows why you are having the problem.

That's Power Shell not a Command Window, the two things have different different command languages.

In particular 'rd' is a Command Window command.

The Equvalent in PowerShell is 'Remove-Item' which has different parameters and different syntax.


<a href="https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/remove-item?view=powershell-7.3" ipsnoembed="true" rel="external nofollow">https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/remove-item?view=powershell-7.3</a>

So although PS has recognised that by 'rd' you mean 'remove-item' it doesn't know what to do with the '/q' because that isn't used as an argument/modifier in 'remove-item'.

(That's what the first line in red is telling you).

You need to run the 'rd' command, as written, in a elevated Command Window (run as Administrator), it won't work PowerShell as it is written.

It should look like this when run in a Command Window. When sucessful, as it is here, there is no dialogue just the next prompt:

<img alt="image.png" class="ipsImage ipsImage_thumbnailed" data-fileid="18080" data-ratio="41.68" data-unique="n38i5o84c" width="499" src="<fileStore.core_Attachment>/monthly_2023_11/image.png.bca6c0d6ed567711e0d1b0c4c0e982a2.png">

Thank you! Nice to have my correct recycle bin back :)

Mick