PowerShell Get Timer Job History
-
Friday, September 09, 2011 1:08 PM
Everybody,
I've an issue with a OneTime Job that haven't a displayname. In Central Admin, this job shows up in the Job History with no name. This job is associated to each server in my farm, and run on each WebApplication. Using PowerShell, I want to know from which Solution (WSP) this OneTime job is coming from.
Any clue on how to do this?
Francois Lessard
Answers
-
Friday, September 09, 2011 1:45 PM
Ok, I found out. Here's what I have done:
$test = Get-SPWebApplication http://site $test.JobHistoryEntries
#List all Job History. I've located rapidly the one with no name. I grab the ID and then I ran this:
$type = $test.jobdefinitions | Where-Object {$_.Id -eq "<GUID>"} $type.typename
That give me the name of the Assembly. From there I was able to find the solution (WSP).
Francois Lessard- Marked As Answer by Docteur LMicrosoft Community Contributor Friday, September 09, 2011 1:45 PM
- Edited by Docteur LMicrosoft Community Contributor Friday, September 09, 2011 1:47 PM

