i am rain

DelTree in Windows 11

For those who use Powershell looking for deltree:

function DelTree {
        param (
                $pathToDelete
        )

        remove-item -Path $pathToDelete -Recurse -Force
}

From Microsoft Learn