vote up 1 vote down star

I plan to run specific application commands every X days using Task Scheduler. Do I have to write support for command-line parameters first, so Scheduler can execute it?

If so, does anyone know any good command-parameter components?

flag

4 Answers

vote up 8 vote down check

If you just want to read any cmd line parameters that were passed to your application at start-up you can use Delphi's inbuild functions.

ParamCount   // Number of cmd params passed at startup
ParamStr(0) // string of param zero

So calling you program like so

c:\myapp.exe -foo -bar

would give the following result

ParamStr(0) = c:\myapp.exe
ParamStr(1) = -foo
ParamStr(2) = -bar
link|flag
vote up 3 vote down

You may wish to consider the FindCmdLineSwitch from the SysUtils unit.

function FindCmdLineSwitch(const SwitchValue:string):Boolean;
function FindCmdLineSwitch(const SwitchValue:string; IgnoreCase:Boolean):Boolean;
function FindCmdLineSwitch(const SwitchValue:string; SwitchChars:TSysCharSet; IgnoreCase:Boolean):Boolean;

This allows to check for the presence of a command line switch, specify whether to ignore its case and optionally use different switch characters e.g. '-' or '/'

link|flag
vote up 2 vote down

VCL Scheduling Agent is a wrapper for Microsoft Task Scheduler API

link|flag
vote up 1 vote down

Why not us the built in Windows Scheduler for this?

--jeroen

link|flag
How do you create cmd parameters? – Tom Oct 20 at 9:51
@Tom: see Mohammed's answer. – Jeroen Pluimers Oct 20 at 10:33
Jeroen, I think that's exactly what he plans to do. He just doesn't know how to make his program understand the commands that Task Scheduler is going to invoke. – Rob Kennedy Oct 20 at 15:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.