Tagged Questions
0
votes
1answer
80 views
How can I start multiple applications and instances using a Windows Scheduled Task?
I have three main applications.
I am trying to start them automatically at log on in a specific order with a given delay.
Here is an example of how I'd like everything to be:
User logs in.
Wait ...
0
votes
2answers
176 views
Windows .bat fails when running from Scheduled tasks; runs fine when running from command line
I am trying to start a virtual machine via a batch file. The .bat file runs fine when I run it from the Windows command line. But when I run it from scheduled tasks, it exits with error code 1.
I ...
2
votes
2answers
39 views
Migrating from cmd to mac
For me it is quite easy to automate a jar file to run on a pc.
java -jar "C:\...\mFilePath\myJar.jar"
stick this into a cmd file, and schedule it.
Now, migrating over to a mac, i am unsure how to ...
2
votes
2answers
84 views
Status of the process while Windows scheduler working
I have a .bat file which should kick off every 30mins. I am using Windows scheduler for this. I have some questions on the same,
1) Does the scheduled task starts at a scheduled time even after a ...
1
vote
1answer
101 views
Scheduled logoff scripts
I wondered if it was possible to launch a logoff script only, for example, every friday. Can this task be scheduled in Active Directory or must I programm a scripts that adds and remove it every ...
0
votes
1answer
62 views
Batch script for creating tasks?
Is there a way to create a batch script to add tasks to the Windows Task system? I need to setup 2-3 tasks per system but I want to be able to run a script to do it.
1
vote
1answer
1k views
How can I recognize a running batch file in task manager?
I run a few batch files as SYSTEM (as services) and they appear as cmd.exe in tasklist. Sometimes I need to terminate one of them but I cannot decide which cmd.exe to terminate.
Plus; I run many ...
1
vote
1answer
1k views
Windows task scheduler not running batch file on network drive
I have a batch file that I'd like to run with the Task Scheduler. Running the batch file manually works fine. If the batch file resides on the C:\ drive, task scheduler runs it fine, but if the ...
0
votes
1answer
297 views
Display Image With No Window
I have a scheduled task that runs on my user machines at startup that currently brings up a 'configuring your station' style message in a command prompt window that is replaced by a vbscript msgbox ...
1
vote
1answer
1k views
Run Windows batch file on schedule as non-Administrator user
I'm running Windows XP x64 SP2. I have a Windows batch file that with some Robocopy commands that I want to run on schedule. I created a scheduled task for it, running as a dedicated user (not the ...
0
votes
2answers
8k views
Run a batch file with windows task scheduler
I have a batch file daily.bat, this is the code:
cd C:\inetpub\wwwroot\infoweb\factuur\cron
c:\PHP\php.exe -f ./cron_pdf.php
ftp -s:ftp_upload.txt ftp.infoweb.be
And I created a task ...
0
votes
0answers
516 views
Problem with running batch file as scheduled task
I am trying to setup my rsync script to run automatically. It uses a key file for authetnication so there is no issue of missin ginput or something.
I have user a.
In user a's profile live a batch ...
2
votes
5answers
5k views
How to execute a scheduled task with “schtasks” without opening a new command line window?
I have a batch file that creates a scheduled task using schtasks like this:
schtasks /create /tn my_task_name
/tr "...\my_path\my_task.bat"
/sc daily
...
1
vote
1answer
5k views
avoiding console window display when scheduled task runs batch file
I have a small batch file which xcopies some files from one folder to another which I've scheduled (via windows scheduled tasks) to run every 1 hour:
@echo off
xcopy c:\foo c:\bar /E /C /F /Y
Since ...
2
votes
2answers
2k views
Scheduled task to map a network drive runs, but doesn't map the drive
I have a task set up to run whenever the computer is logged onto that deletes all network folders and maps a network drive. Here is what is in the batch file:
@echo off
net use * /delete /y
net use ...
1
vote
3answers
191 views
How to Delete a file at a specified date
I want to delete a file (a .exe) from a folder, after a specified date, say 25/Feb/2010. How can I use scheduled tasks and batch files for this. I am not sure whether the code below work :
@ECHO OFF
...
3
votes
3answers
892 views
Task scheduling Batch Files in Vista
Wondering if there is some trick to scheduling a batch file to run in Vista.
I have tried almost every setting/arg I can think of with no result other than an error, or the command window opening ...
4
votes
2answers
6k views
FTP BAT file - Windows Scheduled Task
Is it possible to create a scheduled task in windows, that connects to an FTP site, and downloads all the files and folders within the root directory (or specified folders in the root directory) - for ...
1
vote
2answers
5k views
Running bat file using Windows scheduler
I wanted to run a .bat file in Windows task scheduler, so I opened it, added a new task, browsed to the bat file, and... nothing happened.
So I changed the timing to see if it'll run, and it didn't. ...