Status_Get_ProcessByStart.ps1

function Stats-GetProcessByStart {
Get-Process | Sort-Object -Descending StartTime | Select-Object -First 10
}