Pretty simple script, this just remove files from your downloads folder that are older than x amount of days (by default its set to 60).
$Paths = @(
"%userprofile%\Downloads\"
)
$Days = 60
$limit = (Get-Date).AddDays(-$Days)
foreach ($Path in $Paths)
{
# Delete files older than the...