SharePoint 2010 Timer Job UpdateProgress
SharePoint 2010 has updated some of its timer job features (see http://pathikhrawal.wordpress.com/2010/08/21/enhancement-in-timer-jobs-in-sharepoint-2010/ ). Now SPJobDefinition offers an UpdateProgress Method, to show the status of the timer job in a status bar. UpdateProgress To check the status of a timer job go to "Central Administration > Monitoring > Check Job Status". Check Job Status link in the CA The following code snipplet is an example of how you could use this method. The job reads a rss feed and uploads some pdf files into a document library. The progress bar is updated by each uploaded file. The snipplet is not complete, because of copyright. I commented out some regions but you can see how you could use the updateprogress function. public class PressListTimerJob : SPJobDefinition { /// <summary> /// We must persist the to have in the execute function /// </summary> [Persisted] private String mRootSiteU