A scheduled task is a computer task that is scheduled to happen at a certain time and may repeat.
0
votes
2answers
23 views
Can Windows Scheduler start a program of type class library?
How does the execution system in Windows know to run the main method automatically? I.E If I am trying to trigger a DLL from a "class library" (preferrably) or a "console application" using Windows ...
0
votes
1answer
27 views
File.Exists returning true, not in Directory or VirtualStore
I have a small problem which is similar to this question here
HOWEVER
The code is litterally:
if(!File.Exists(@"C:\Windows\System32\Log.txt"))
{
//Create file
} else
{
//Load file
}
...
0
votes
0answers
16 views
Task Scheduler randomly not running scripts, reports them as complete
I have a windows server 2008 r2 virtual machine that is set up to run various tasks at night, it reads from a database creating CSVs and copies files to and from locations on other disks. All tasks ...
0
votes
2answers
12 views
Decouple roles in Quartz.net
I am currently investigating using Quartz.NET for scheduling tasks in my system. As an example of how I am using Quartz.NET, below is a very simple example demonstrating how I am scheduling a task:
...
0
votes
0answers
11 views
event schedular on shared hosting
I want to create a event scheduler in Mysql4.1 which is on shared hosting.
I was searching for Events tab for creating it and neither the sql query for creating Event is also not working.
Query used ...
-1
votes
1answer
23 views
powershell to stop windows task and windows service [closed]
I am looking to use powershell to the following but not 100% sure how to do it as I am new to it.
I would like to stop a scheduled task, perform an action and then restart the scheduled task again. ...
0
votes
0answers
9 views
Macro in Excel batch file gives different results when run as schedule task
I have a daily scheduled task (Windows XP) that opens an Excel file on a shared drive. This in turn runs an autoexec file. This refreshes a connection to SQL Server data, clears several columns, runs ...
0
votes
1answer
16 views
CloseMainWindow() in Task Scheduler process won't terminate
I use this simple line in a powershell script to close outlook before doing backup of PST:
Get-Process Outlook | %{ $_.CloseMainWindow() } | Out-File -Append -FilePath $LogFile
It work perfectly ...
0
votes
0answers
21 views
Why does Task Scheduler Managed Wrapper give me different results when run locally vs. running on server?
I'm using Task Scheduler Managed Wrapper to get Scheduled Task information from a server. Here's my code, which I pretty much gathered from the documentation:
public List<ScheduledTask> ...
-1
votes
0answers
6 views
Start All App Pools Using Task Scheduler [closed]
I have a bunch of App Pools in IIS which need to get started when the server is started. My task is getting scheduled by a batch script which schedules it as so:
schtasks /Create /RL HIGHEST /RU ...
0
votes
1answer
16 views
How to suspend/resume a progress based on the scheduled time?
There are solutions to run scheduler to start triggering. But my requirement is to trigger at the end time also.
I have a schedule input like below:-
I have to resume a progress when scheduled ...
0
votes
2answers
18 views
How to execute aspx file using windows task scheduler
Is there a way to execute aspx file using windows task scheduler without using a console app?
Can it be done using bat script or maybe there is a way to do this in Task Scheduler directly?
Thanks!
-2
votes
2answers
36 views
How to update table value based on the time line
Can anyone please suggest me the best approach for my requirement? I need to automatically update the table value after some specified time, using Java and MySQL as the database.
0
votes
1answer
28 views
Network Scheduler Service
I am planning on a project to schedule scripts on multiple Windows and Linux servers. I'm kind of going down the path of doing this all from scratch because I have requirements which alternative ...
0
votes
0answers
6 views
“VirtualBox - Critical Error” When VMs are Runned From Scheduled Tasks [migrated]
I have 2 VMs running with VirtualBox under a Windows 2003 Server R2 Standard x64 Edition, both are started with scheduled tasks when server starts.
VMs:
Debian x64
Windows XP Professional
Both ...