A timer job runs in a specific Windows service for SharePoint Server to automate common SharePoint tasks.

learn more… | top users | synonyms (1)

0
votes
0answers
10 views

SPTimer Jobs During Certain Time Frame

I have a request to run a timer job each hour from 12am-5am Monday-Saturday. Do I have that level of flexibility to define my timer job schedule within the FeatureActivated method in my C# timer ...
0
votes
2answers
25 views

Workflow Timer Interval

Can I change Workflow Timer Interval value from default "every 5 minutes" to "every minutes" without impact to performace? Thanks for supprt, Best regards
0
votes
0answers
6 views

Password Management Timer Job Failed

After changing the "configure service accounts" for Web Analytics Service under Security in CA, I received the following error: Also when I access the timer jobs, I noticed that the Password ...
0
votes
0answers
19 views

passing parameters to timer job

I have a web template that provisions some lists and as part of the solution i need a timer job to manipulate the lists. The problem is i do not know where the lists will be within the web ...
0
votes
0answers
25 views

Run a SharePoint manual start workflow from a timer job

I have developed a SharePoint manually-started workflow (WF) that send mail to a group of persons entered by the user as an initiation parameter before starting the workflow on an item. Now i want ...
0
votes
1answer
21 views

how to configure a timer job to run in specific servers?

If I have a big environment with 100,000 users, I am planning to split the servers for WFE, Application Servers and Batch Processing. I wonder if there is an specific way to enable/install specific ...
0
votes
1answer
45 views

TimerJob editing workflow and web config - Consuming external webservice

I have a list that is attached to a workflow (State machine, VS2010, SP2010). There is an OnWorkflowItemChanged activity that will check if a column of the list has been changed. If it changed, it ...
0
votes
1answer
24 views

for update record using sharepoint 2010 Timer job

i want to know that how to update record in MS sql server 2012 using SharePoint 2010 Timer job.Or how to call MS Sqlserver procedure using sharePoint timer job every hours. Please help me any ...
0
votes
2answers
53 views

make sptimerjob run on correct list

I followed the code example at How to: Create a Web Application-Scoped Timer Job. It creates a timer job that runs on a list in the root of the web application. However, I need to make the timer job ...
1
vote
1answer
35 views

How do to update custom SPTimerjob?

I have created & deployed a custom Jobdefinition via feature activation. During feature deactivation I use... Foreach(SPJobDefinition job in WebApp.JobDefinitions){ ...
1
vote
2answers
55 views

Value retain when redeploy of SharePoint Timer Job

I have a very simple question on SharePoint 2010 Timer Job, I build by reference from here. Basically upon execute of the Timer Job, I add an entry to SharePoint Custom List as following: public ...
0
votes
0answers
156 views

SharePoint 2010 Workflow stuck in starting status?

We have a SP 2010 workflow on a Document Library which sends an email notification out to certain users when a property is changed for a document. This workflow was working fine up until 2 weeks ago ...
0
votes
0answers
47 views

Word Automation Services - Generated documents with original metadata

I'm tying the word automation services in order to transform some docx and docs into pdf/a files. It works like a charm. However, something is missing: I need to pass the SPListItem metadata from the ...
0
votes
0answers
121 views

New-SPSite gives ERROR: Failed to OpenThreadToken, LastError=1008 in Timer job

I have a timer job that is running some powershell. The script creates a content database and then attempts to create a site collection. If run from powershell prompt the script works fine. If I ...
0
votes
0answers
24 views

Problem in Invoking SQL Server Reporting Services by SharePoint Timer Job

I'm facing some problem with the Render of some Reports during my SharePoint Timer Job. The same code running in a Console Application works correctly but in SharePoint Timer job stops working without ...
1
vote
0answers
51 views

Solution's deployment status failed

Last I night I was trying to deploy a custom timer job on production servers, I added solution easily using STSADM, but when I tried to deploy it using CA it returned with deployment status as Failed. ...
2
votes
1answer
64 views

Unable to update list item - Additions to this web site have been blocked

I am developing a SharePoint job. In the public override void Execute(Guid targetInstanceId) method, my code goes: SPSecurity.RunWithElevatedPrivileges(delegate() { int count = ...
0
votes
2answers
67 views

Problem Timer job unknown error

I'm having a problem to reach a specific SPlist in my sitecollection. The timerjob is supposed to read all items from a SPlist I've choseed and send them to a user through mail. I'm not sure if it's ...
0
votes
1answer
53 views

SharePoint Farm feature not deploying to all members

I have a SharePoint 2010 farm solution (with some timer jobs tied to SPTimerV4 and a LockType of None) that is not deploying it's GAC'ed DLL to all servers in the farm. This timer job must run on ...
3
votes
2answers
156 views

Running a Timer Job

I have a custom Timer Job that runs on every Monday. However, I want to be able to run the timer job manually outside of Central admin. but I dont want to use PowerShall or stsadm. Can I put a link ...
0
votes
1answer
45 views

Accessing Entity Framework from Timer Job: connection string problem

I had a DB that normally I access from my SharePoint (2010) custom feature by Entity Framework. The connection string is stored in the web.config. If I do something like that from outside TimerJob: ...
2
votes
2answers
192 views

How to fix the access issue with Timer JobDefinition Page - SP2010?

I am unable to access the Timer Job Definition Page in Central Admin and getting error given below, if anyone can tell me how to fix this issue please, The configuration database was queried for a ...
1
vote
0answers
66 views

Sharepoint Workflows in background

I'm just curious, I was reading an article here, and in the third paragraph it states "If you didn’t know, there are quite a few workflows that run in the background all the time. " I was just ...
0
votes
1answer
167 views

SharePoint 2010 send email

I have a timer job that will get ListItem based on some criteria. After I gathered all the items, I will send an email based on the Modified column and cc that email based on the Created By column. ...
0
votes
1answer
78 views

WSS 3.0 - Running Timer Jobs Manually

I am trying to troubleshoot why my timer job is not working in WSS 3.0. Is there anyway to run a timer job manually in WSS 3.0?
0
votes
0answers
54 views

Why Sharepoint Timer Service is making Pc slow?

Currently Sharepoint Timer Service is stopped in my Pc and the Pc is running perfectly but when i start Sharepoint Timer Service at the time of Development, at that time it is making my Pc very slow ...
0
votes
0answers
68 views

Variation Subsites Not Created - all timers finish in 00:00:00

Part 1: Variations Create Hierarchies Job Definition successfully creates the source & target labels. After that no subsites are created on the target labels nor any target pages. I've created ...
0
votes
0answers
54 views

Web analytics job not running

I've examined a web analytics job and have retrieved the following properties: WebAnalyticsWorkflowTrigger Display name: Web Analytics Trigger Workflows Timer Job Title: Web ...
0
votes
1answer
50 views

Could these errors be the cause of my timer job problem?

I have a timer job that runs every night at midnight. The first part of the timer job is to iterate through every single site in a particular site collection (there are many). The second part of the ...
0
votes
1answer
50 views

Deciding on custom timer job constructor

I have been tasked with writing a couple custom SPJobDefinitions and have 2 blocking questions regarding its implementation. What constructor should I use? I have noticed two that I can use. One ...
0
votes
0answers
71 views

SharePoint 2010 Workflow Reversing Date Format

I've created a workflow that stores its start date and time plus 10 minutes to a variable and then repeats the process with 20 and 30 minutes. Once in production this will go up to a few days each. ...
0
votes
0answers
114 views

Custom Timer Job does not execute on production server

I have a custom job. It works fine on staging server, after moving to production it is not working. It shows in Central Administration "Job Definitions" I can open it and click "Run now" but it has no ...
3
votes
1answer
121 views

Strange error from timer job service

I'm developing timer job for SharePoint 2010. I was able to deploy it on my local machine but when I was trying to execute timer job I get strange error message: Job definition SP2010.CopyDocsJob, ...
2
votes
1answer
28 views

Users get subscribed to the same list more than once

I have developed a timerjob for MOSS 2007 which loops through a variety of subsites and then loops through all users on each site. Code can be seen here The issue at hand is that some of the users ...
1
vote
2answers
364 views

My custom sharepoint 2010 Timer job not running

I have created a custom timer service to create a list. its scheduled in minute using FeatureActivated event. I could able to globally deploy the solution. But the my timer job is not running. Its ...
0
votes
1answer
76 views

workitem timerjob wont execute

I have the following timer job, not done by me. When I attach debugger to OWSTIMER.EXE the constructors are triggered but the ProcessWorkItem method is never step into. There are about 4000 ...
0
votes
1answer
157 views

Can't disable Custom Timer Job

I has created a CustomTimerJob to update my list but i can't disable this timerjob because the title is disable, I can't click or do anything. I can't not find it in job definition but it ...
0
votes
1answer
83 views

TimerJob error missing public constructor

I have an issue on my SharePoint 2007 portal, where i created a custom TimerJob, but when I deploy it i get a message: MyTimerJob cannot be deserialized because it does not have a public default ...
0
votes
1answer
224 views

Rating's not being saved

Initially, I thought there was a problem with a control I've made to rate a document when I found that no documents appeared to be rated. So last night I rated documents (approved and published) ...
1
vote
4answers
382 views

Advantages/disadvantages of Timer Jobs vs. PowerShell scripts

I've worked with several examples of both SharePoint Timer Jobs and PowerShell scripts, some of them doing the same things as the other. In my experience, PowerShell scripts are far more flexible, ...
0
votes
1answer
89 views

How do I run the social timer jobs in powershell?

As title says. I've applied ratings to documents and they, obviously, haven't appeared yet. Is it possible to use powershell to explicitly force these timer jobs to run immediately? I believe the ...
1
vote
1answer
169 views

Timer Job - targets to specific application server

Below is our server topology 3 WFEs 2 App Servers 1 DB server Now, I would like to write a custom timer job that should run only on the specific application server("APP1"). SPJobdefinition does not ...
0
votes
2answers
158 views

Problem with connectivity and OWSTIMER.exe

Our stagging environment is on a single server with 3 virtual servers, Database Server K2 Workflow Server WebFrontEnd Server Now time to time I am getting this exception for a webpart in event ...
0
votes
2answers
517 views

Microsoft SharePoint Guidance: Could not load assembly 'Microsoft.Practices.ServiceLocation'

I am using Microsoft SharePoint Guidance for logging and exception handling in my SharePoint timer job, my solution in SharePoint 2007 worked perfectly (and is working). Right now I am in the ...
0
votes
0answers
113 views

Web Application running on both App server and WFE

I am having an issue with Workflow "Pause for" action where this action never fires. I read this article http://support.microsoft.com/kb/2674684 and it talks about the disabling Workflow server for ...
0
votes
0answers
84 views

All timer jobs are missing from a Web Application

A timer job solution has been written and installed to our farm. It appeared to install correctly. However when you go to Central Admin under timer jobs and look at ...
0
votes
2answers
305 views

Run timer job on a single content database using SPJobLockType.Job

I have developed a custom timer job, inheriting from SPJobDefinition. It currently runs on two content databases, and I would like it to run on only one. I have created this timer job using the ...
0
votes
1answer
798 views

“Access Denied” while Activating Custom Timer Job

When i tried to Activate Feature of Timer Job It returns error : Access Denied Scope of Feature is "Site".. private static void CreateJob(SPSite site) { try { ...
0
votes
1answer
154 views

Possible to programmatically force timer to run?

I've exposed some 'rename metadata term' functionality to the user through an application page. It works fine, but they obviously don't see the changes until the 'Taxonomy Update Scheduler' has ran - ...
0
votes
1answer
69 views

Is there anyway to execute a web scoped timer jobs manually

My timer job runs every 15 minutes so on Staging server I have to wait 15 minutes while waiting for results after deploying it, is there any way I can simply execute it, I remember there was some ...

1 2 3 4