how to delete sharepoint timer job using powershell
02/06/2011 Leave a comment
When developing custom sharepoint timer jobs sometimes you want to delete junk jobs created by deployment attempts .
Warning !!! DO NOT DELETE ANY TIMER JOB UNLESS BE SURE
Searching listing and find timer job to delete.We need an id.
Get-SPTimerJob | where { $_.name -like “*<your search criteria>*” } |ft id,name
Set job to a variable
$job = Get-SPTimerJob -id <GUID>
And delete it.
$job.Delete()
just it.