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?
|
|
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?
|
|||
|
|
|
|
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.
So calling you program like so
would give the following result
|
||
|
|
|
|
You may wish to consider the FindCmdLineSwitch from the SysUtils unit.
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 '/' |
||
|
|
|
|
VCL Scheduling Agent is a wrapper for Microsoft Task Scheduler API |
||
|
|
|
|
Why not us the built in Windows Scheduler for this? --jeroen |
||||||
|