It is possible to delete a time job using Powershell and the following command:
Get-SPTimerJob | where { $_.name -like "*JobName*" } |ft id,name
$job = Get-SPTimerJob -id {JobID}
$job.Delete()
Is it also possible to do this for all TimerJob which are returned by Get-SPTimerJob?
EDIT: I am looking for an answer and a working code snippet which will do as I described above.