<# .SYNOPSIS Delete all compiled files of the current folder and its subfolders. .DESCRIPTION This script deletes all the compiled files of the current folder and its subfolders. .EXAMPLE Delete all compiled files of the current folder and its subfolders. .\Clear #> Get-ChildItem -Path . -Include *.class -File -Recurse | foreach { $_.Delete() }