Error when accessing ServiceJobDefinitions.aspx page from Central Admin
So i went to manage a timer job and was presented with the following screen.
The ULS logs didn’t reveal too much information other than a nullreference exception.
There is however some more information in the widows application event log
There was an exception loading job definition "Microsoft.Office.Project.Server.Administration.ServerScheduledTimerJob" (id "48a2075b-37ac-4866-b498-997374621326"). Object reference not set to an instance of an object.
To fix the issue some PowerShell is needed to remove the job.
Run the following PowerShell script
$job = Get-SPTimerJob <guid of job> $job.Delete()
The job definitions pages now loads
via Buzz Blog http://paulbuzzblog.wordpress.com/2012/08/24/error-when-accessing-servicejobdefinitions-aspx-page-from-central-admin/
Paul is a an expert SharePoint and Project Server developer and is responsible for designing and implementing custom solutions on client systems using the latest SharePoint and .NET technologies.
Paul has extensive experience with SharePoint systems across all sizes of implementation, ranging from small to large farms and has an excellent understanding of all the elements of SharePoint. This article has been cross posted from paulbuzzblog.wordpress.com (original article) |