Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does Sharepoint 2013 provide a native solution for workflow scheduling?

I know HarePoint Workflow Scheduler as alternative solution, but I would like to know if the new Sharepoint 2013 capabilities include this feature.

share|improve this question

1 Answer

As far as I know SharePoint 2013 doesn't have a native solution for workflow scheduling. From the top of my head however I can suggest the following approaches:

  1. Create a SharePoint Timer Job which will trigger your workflow based on the schedule you provided.
  2. Create a console application using the workflow services to trigger the workflow manually. Once this is done, setup a scheduled task based on the schedule you wanted it to run.
  3. A blog post shown here demonstrates how to have a workflow run once a day.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.