Tagged Questions
2
votes
3answers
2k views
Server 2008 Task Scheduler Mapped Drive Access C#
I'm trying do get Server 2008's Task Scheduler to run a C# console app which backs up data to a mapped backup drive somewhere on FastHosts network.
I've written a test app which simply does this
...
2
votes
2answers
1k views
Regularly invoking an interactive process (WatiN tests) via Task Scheduler
I'm using a suite of WatiN tests driving IE to do some periodic sanity checking for the purposes of monitoring a site.
The suite works fine when I invoke it interactively and/or when I configure the ...
1
vote
1answer
96 views
Why does windows task scheduler change the date format and how can I fix it?
I am having roughly the same problem as outlined in the post: windows server 2008 R2 date format reverts to US.
I have a batch file that creates and smart names backup files ...
1
vote
2answers
414 views
Can't schedule Program with Excel Interop
I have developed a console program in C# .NET, that uses Excel Interop.
The program works just fine on my development machine and in the windows server 2008, if I run it from command line.
When I try ...
1
vote
1answer
1k views
Windows 2008 Task Scheduler Problem
I've created simple .NET 2.0 Console application. Reads DB, sends emails and writes result to subfolder named "logs" as a .TXT file.
Application works when i run it manually.
But task scheduler can ...
0
votes
1answer
71 views
Python script started by Task Scheduler can't edit file
I made this python script:
# -*- coding: utf-8 -*-
from datetime import datetime
date = datetime.now()
file = open('myfile.dat', 'a+')
file.write(str(date)+'\n')
It works fine. But when I ...
0
votes
0answers
127 views
Task scheduler windows server 2008, trigger when process ends
Using Task scheduler on windows server 2008, can I somehow trigger a task run when a named process end?
0
votes
1answer
383 views
How to programmatically import the task scheduler in Windows Server 2008
In Windows application, when I import the task scheduler (.job format) in Windows XP machine it is working fine. But when I am trying to import the task scheduler in Windows Server 2008 it is not ...
0
votes
0answers
576 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
638 views
Windows 2008 task scheduler tasks can have user interface?
on Windows 2003 server, scheduled tasks appeared on the console if the user was logged in at the time the task started. eg a scheduled task run as user xyz would appear on the screen if xyz user was ...