scheduled-tasks

Error while running Scheduled Task from MSBUILD script

I am running a MSBUILD script which disables and enabled a scheduled task from command line. I am getting following error. No idea, what 'exited with code 1' means. When I try to copy paste the line in command prompt, it works perfectly. I doesnot run in MSBuild script which is in turn called by CruiseControl.NET SNIPPET FROM MSBUILD fi...

Google App Engine, Task Queues

How can I remove a task from a task queue? Is Google App Engine Task Queue removes the task from the queue after it is executed? ...

Is there any good freeware task scheduler/project management tool?

Hello, I am looking for some free PM tool or task scheduler. I tried hitask.com, it seems pretty good and almost enough, but I very miss there some charts like gantt chart. Requirements: Must have: good task manager, reminder, gantt chart, freeware Should have: be collaborative - something like put tasks to team members good to have:...

How to discover the location of the Scheduled Tasks folder

I have seen references online that state that Scheduled Tasks in Windows are stored in %SystemRoot%\Tasks (usually C:\Windows\Tasks). However on my Windows 7 system, I observe that while that folder exists, it does not seem to be used. Instead my system seems to be using C:\Windows\System32\Tasks . Is there any way to discover which f...

Scheduled tasks for ASP.NET

How to execute asp.NET code in scheduled task of windows? ...

task strategies for handling HardDeadlineExceededError

I've got a number of tasks/servlets that are hitting the HardDeadlineExceededError which is leaving everything hanging in an 'still executing' state. The work being done can easily exceed the 29 second threshold. I try to catch the DeadlineExceededException and base Exception in order to save the exit state but neither of these excep...

Spring @Scheduled is executing task twice when using annotations

I have made task using Spring @Scheduled annotation, but for some reason it is executing task twice. My Spring Framework version is 3.0.2. @Service public class ReportService { @Scheduled(fixedDelay=1000 * 60 * 60* 24) @Transactional public void dailyReportTask() { ... code here ... } } Here is my XML: <...

Powershell script to create scheduled tasks from csv file

I would like to use Powershell to create a couple of scheduled tasks, on a server. I have created the file from existing schedule's I have loaded up the csv file, piped it to a select, and retreived all the info that I require from the csv file. However I am not sure on how to pass these results on to a external non powershell command...

Scheduling with gearman vs. cron?

Hi everybody, I have noticed a lot of people discussing Gearman and it's scheduling features making it enable to distribute work onto other servers. However, I have not yet seen a comparison to native cronjobs. What are the differences between cron and Gearman? ...

The most reliable way to schedule a job in ASP.Net 4

We need a practical way (not just in theory) to start a job in asp.net in a given time or in intervals. the job could be to run web service, a certain function or executing a page. is there any new approach in ASP.Net 4 to do this? or is there any reliable way other than using windows schedule tasks? ...

castle scheduler - cluster

Hi We're using the castle scheduler component: http://using.castleproject.org/display/Comp/Castle.Components.Scheduler?showChildren=false I have a wcf service which creates the tasks and that does it's job fine. I then have a console app running (will be a windows service eventually) which should then keep an eye out for tasks to run....

How to run a service at a specific time using JSP/Servlets app?

Hi, I'm developing JSP/Servlets App,and I want to execute a service at a specific time , for example : For each day at 10:00 AM , delete any attachment from the "attachment" table in the database where column X== NULL. How can I do this in JSP/Servlets application ? I use Glassfish as a server . ...

How do I create a scheduled task, via command line, which includes advanced options

I'm trying to create a scheduled task (in WinXP) which runs every 10 minutes, starting at 16:00:00 to 06:00:00, daily, from the command line. Currently, I can create a scheduled task which runs every 10 minutes, starting at 16:00:00, daily, by using the following command: SCHTASKS.EXE /CREATE /SC MINUTE /MO 10 /TN "Scheduled task name"...

How to create a Task Scheduler App.

I have been task with (ha) creating an application that will allow the users to schedule a command line app we have with a parameter. So the command line app takes an xml and "runs it" So bottom line I either need to create a windows service or learn how to interact with the Task Scheduler service already running on the box (version 1 ...

Why would my rake tasks running via cron get invoked twice?

I have a rails app with the whenever gem installed to setup cron jobs which invoke various rake tasks. For reasons unbeknownst to me, each rake task gets invoked twice at precisely the same time. So my db backup task backs up the db twice at 4:00am. Inspecting crontab reveals correct syntax for all of the cron jobs, so I don't think th...

Does Oracle Support Events?

MySQL supports events where i can set up something to happen in a specified time period Eg: Update the salary's every month Eg: Update something every year Eg: Change the status of a book to "overdue" in a week Etc etc etc How do I do this in Oracle? ...

internally schedule an update in iphone

Hi, When the application which we built is offline or closed, Is it possible to pop up a message to open an application without the influence of back-end server ? Say for every one week ? ...

ClickOnce app not starting from the scheduler

I have a batch file that will bounce a clickOnce app: @REM The odd PING statements are to create a 5 second wait @echo off taskkill /F /IM MyApp.exe PING 1.1.1.1 -n 1 -w 5000 >NUL "%USERPROFILE%\Path\To\My\App.appref-ms" This works fine when I double-click it: the process is killed and then restarted after 5 seconds. However, if I s...

Running a vbs file via a scheduled task on Server 2003

Hey, guys. I've been working on modifying an existing vbscript. The wierd part is that when I run the script manually, it works fine. But as soon as I try to run it as a scheduled task, it reports as complete, but doesn't actually do anything. After much troubleshooting, I think I tracked it down to the original CreateObject. Here...

Is there any way to access information about a Coldfusion server's load from within coldfusion?

I am writing a scheduled task which I would like to run frequently. The problem is that I do not want this task to be run if the server is experiencing a high traffic load. Is there any way other then getting the free/total/max memory from java to try and figure out whether this task should continue? ...