Tagged Questions
The windows-scheduler tag has no wiki summary.
3
votes
2answers
3k views
2
votes
1answer
2k views
windows 2008 task scheduler return code 1, no logging
trying to run a simple batch file in windows 2008 task scheduler
call cleanup.bat > cleanup.log;
call ant -f ongoing_changes.xml > automation.log
The action is triggered properly and from ...
1
vote
1answer
46 views
Python Script Keeps Popping Up Console when Run by Scheduler
I have a python script that Windows Scheduler runs every 5 minutes for me. The script works fine but every time it runs it's loading up the console really quick on my desktop before it automatically ...
1
vote
1answer
34 views
Help with using schtasks, defining a specific time
I have successfully created a task, although I am having trouble defining when it should occur e.g. using the /MO command.
How is it possible to tell schtasks to execute this on e.g. every 5 days on ...
1
vote
2answers
328 views
Using Windows PowerShell as a batch scheduler
We have a series of nightly batch jobs running as Windows Scheduled Tasks. Their numbers have grown to a point that they are beginning to step on each other since there are no dependencies between the ...
1
vote
1answer
533 views
What are the advantages and disadvantages of using Quartz.net over the windows scheduler?
For daily tasks, such as
converting csv files to excel files;
creation of excel files (the contents of which are created using financial methods);
moving and copying of files;
calculation of daily ...
0
votes
2answers
44 views
what type of .net app should I create to run from windows scheduler?
I have a windows project that runs queries from a database and generates a bunch of emails. I want to run this weekly through the windows scheduler. What is the best way to set this up?
I am ...
0
votes
2answers
80 views
Windows Scheduler & C#
I have a script I wrote in C# (part of a ASP.NET application) that would reset a number if the end date of a booking is reached. I would like to automate the process, so each time an end date of ...
0
votes
1answer
76 views
Chain trigger in Task Scheduler in Windows
I scheduled some tasks in Windows task scheduler. I installed a third party tool called Bmail that added a task that sends email from the task scheduler independently. It can be triggered at a given ...
0
votes
0answers
48 views
get AT jobs with NetScheduleJobEnum
I want to get a list of all the AT scheduled tasks' application names. I'm using NetScheduleJobEnum() and an array of AT_ENUM structs.
But in my code, after running of NetScheduleJobEnum, buffPtr ...
0
votes
0answers
185 views
Impersonation not working in scheduled task
I have a very simple program that copies file from one location to another, and I have scheduled it run everyday using the windows scheduler.
But when the scheduler launches it, it fails and logs ...
0
votes
0answers
221 views
Scheduled task with interactive rights under XP
I want to add a scheduled task via setup that would run with interactive rights. The Windows 7 schtasks has an /IT switch which does what I need. But I can't seem to find an equivalent on XP.
Is ...
0
votes
2answers
226 views
Windows Scheduler OR SQL Server Job for sending out digest e-mails
Will be sending out e-mails from an application on a scheduled basis.
I have an EmailController in my ASP.NET MVC application with action methods, one for each kind of notification/e-mail, that ...
0
votes
5answers
724 views
How do I debug an exe running through Windows Scheduler?
I'm using Windows Scheduler to run an exe I have written.
How can I jump into a debug session when the scheduler starts my exe?
Update 1.
I had thought of doing a Thread.Sleep and then Attach to ...
-1
votes
1answer
141 views
PHP Scheduled Task [closed]
I have read for the past 3 hours on scheduled tasks, but cannot seem to find the correct syntax. Basically, I have a .bat file which calls a php file. Have a look:
I got this litle snippet from ...