Every so often I find a new cmdlet in PowerShell. This was the case with Clear-RecycleBin that I’ve just found.
It appears to have been introduced with PowerShell 5.0 BUT isn’t available in PowerShell 6.0
With pretty simple syntax
PS> Get-Command Clear-RecycleBin -Syntax
Clear-RecycleBin [[-DriveLetter] <string[]>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
Its easy to use
PS> Clear-RecycleBin -DriveLetter C -Force
use –Force to avoid the question to confirm the action
under: PowerShell v5