February 2013
Intermediate to advanced
304 pages
8h 26m
English
Scenario/Problem: You want to disable a specific timer job.
Solution: Use the Disable-SPTimerJob cmdlet.
To disable a timer job, execute the Disable-SPTimerJob cmdlet with the Identity of the timer job or a timer job variable. Listing 4.25 shows a sample command line.
Listing 4.25. Disabling a Timer Job
$timerJob = Get-SPTimerJob -Identity "DocIDEnable"Disable-SPTimerJob $timerJob
Read now
Unlock full access