Tagged Questions
3
votes
3answers
76 views
Is 16 milliseconds an unusually long length of time for an unblocked thread running on Windows to be waiting for execution?
Recently I was doing some deep timing checks on a DirectShow application I have in Delphi 6, using the DSPACK components. As part of my diagnostics, I created a Critical Section class that adds a ...
2
votes
1answer
86 views
Ruby behaves differently in windows task scheduler
Ruby won't recognize directories when run from the task scheduler. I've had similar issues with ruby when running from the windows task scheduler.
Can anyone explain why ruby behaves this way when ...
2
votes
3answers
837 views
How to run a .NET program, automatically, every hour
I have xml data I access through a web service. I need to read the data and copy it locally. The below code works fine. I need now to run this code at least twice or three times a day wihout manual ...
1
vote
1answer
609 views
Simple “Hello World!” console application crashes when run by windows TaskScheduler (1.0)
I have a batch file which starts multiple instances of simple console application (Hello World!). I work on Windows server 2008 64-bit. I configure it to run in TaskScheduler, at startup, and whether ...
0
votes
0answers
80 views
Changing run time of already scheduled tasks in windows task scheduler
I have problem with modifying tasks which already exists on machine. I'm trying to do this with generated interop interfaces from C# (Interop.TaskScheduler.dll generated from system32/taskschd.dll).
...
0
votes
0answers
105 views
Windows Task Scheduler running application but cannot send email
In my windows task scheduler, I have scheduled a task to run a c# console application executable on a daily basis. This application sends some data to the database and then sends an email.
When I run ...
0
votes
1answer
27 views
Creating a Task scheduler for Database status change
In my application a registered user's profile should expire after 3 months from the registration date. I need to check and set the status of users to expired in DB every day at midnight. How can I ...
0
votes
1answer
75 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
1answer
124 views
How do i use Windows task manager to run a command? [closed]
I am trying to schedule a task to run on through the windows task manager to run this command
C:\php\php.exe -f "C:\leads\my_file.php"
I can run the file by going to cmd and typing the command but ...
0
votes
0answers
574 views
Task Scheduler: Run whether user is logged in or not: not working
I have a Task scheduled to run in Windows server 2008 (start up notepad). It seems to work fine when "Run whether user is logged in or not" is not selected. however when I select it the the task no ...
0
votes
1answer
76 views
can you put an asp.net mvc controller action in a windows scheduler
i have an asp.net mvc site and i have a controller action that emails out reports to people. I want to have this run on a daily basis so i am trying to use the scheduler on windows.
As all i have is ...
0
votes
1answer
485 views
Windows scheduled task
I have created a Windows 7 scheduled task:
schtasks /create /tn MyTask /tr C:\temp\test\MyScript.bat /sc MINUTE
Problem is that this task seems to get executed by Windows but I think it can not ...
0
votes
2answers
153 views
Last Runtime 9020 returned by Windows Scheduler
I implemented an update process for a piece of software using the Windows scheduler. It worked great until lately. For some reason the task entered in the Windows Scheduler is not executed anymore.
I ...
0
votes
3answers
485 views
Catch tasks from windows task scheduler in a .net app
I have a program that is running in the background, this program has to be notified when a specific windows event is occurring.
I know the name and id for the event and i know how to schedule an ...
0
votes
5answers
929 views
Automatically starting Windows Sound Recorder
My division has been tasked with recording the morning presentation audio for future use, using the built-in Windows Sound Recorder. Because of human nature, we don't always remember to start it on ...