Skip to main content
Nintex Community Menu Bar

Nintex Workflow Scheduler Does Not Run Within SharePoint 2016


butlerj
Nintex Employee
Forum|alt.badge.img+20
ISSUE
After upgrading or installing the Nintex Workflow Scheduler within SharePoint 2016, the Scheduler timer job never runs (even when triggered manually).
ERROR CODE
Errors found within the ULS logs: Job definition Nintex.Workflow.Scheduling.WorkflowSchedulerJob, id 419c55b3-9f2d-4c44-b6bb-c1e975987e08 not applicable, ignoring SharePoint cannot deserialize an object of type Nintex.Workflow.Scheduling.WorkflowSchedulerJob, Nintex.Workflow, Version=1.0.0.0, Culture=neutral, PublicKeyToken=913f6bae0ca5ae12 on this machine. This typically occurs because the assembly containing this type is not installed on this machine. In this case, this message can be safely ignored. Otherwise, the assembly needs to be installed on this machine in a location that can be discovered by the .NET Framework.
RESOLUTION
Run the following script to enable the AllowServiceJobs property on the servers within the farm:
$farm = Get-SPFarm $FarmTimers = $farm.TimerService.Instances foreach ($ft in $FarmTimers) {       if ($ft.AllowServiceJobs -eq $false)       {              write-host “Service jobs are NOT enabled on ” $ft.Server.Name.ToString();              write-host “Enabling service jobs”;              $ft.AllowServiceJobs = $true;              $ft.Update();       }       else       {              write-host “Service jobs are enabled on ” $ft.Server.Name.ToString()       } }
ADDITIONAL INFORMATION
If the issue remains unresolved, :
  1. Ensure only one Nintex Scheduler job exists in the farm
  2. Ensure that Workflow Scheduler job is associated with a content web application 
Translate
Did this topic help you find an answer to your question?

0 replies

Be the first to reply!

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings