Hello
just downloaded this fine piece of software for testing.
Some questions :
Is it possible to pass parameters via the command line ?
I would need to run a macro during working hours - is there a possibilty to do this (In the Properties dialog there is only a AT: box)?
Thanks for the help
Frank
Switzerland
Command Line function
Moderators: JRL, Dorian (MJT support)
Ja, laut Command Reference sollte gehen !
Check "Command Line" in the CmdRef:
" ... you can also pass parameter values into the script :
msched Example Script /filename=testfile.txt /path=c:\outpath\
The above example runs a script called 'Example Script' and passes two variable values in filename and path. These variables can be used in the usual way within the script, ... "
Ernest
Check "Command Line" in the CmdRef:
" ... you can also pass parameter values into the script :
msched Example Script /filename=testfile.txt /path=c:\outpath\
The above example runs a script called 'Example Script' and passes two variable values in filename and path. These variables can be used in the usual way within the script, ... "
Ernest
Command Line function
Ernest
Thanks for the hint. In fact I was looking for a parameter to specify the run time, or a parameter to disable a macro.
E.g. run a Macro form the command line at 17:00, or disable a macro that runs 5 times a day in order to prvent the next execution.
Thanks for the hint. In fact I was looking for a parameter to specify the run time, or a parameter to disable a macro.
E.g. run a Macro form the command line at 17:00, or disable a macro that runs 5 times a day in order to prvent the next execution.
Hi,
beside the advanced options at "macro properties/run when" you could use something like this:
Gruß
Ernest
beside the advanced options at "macro properties/run when" you could use something like this:
Code: Select all
Let>Feierabend=18
Let>Morgenstund=10
Label>Chef
hour>Stunde
If>Stunde>Feierabend, WartNochAWeng
If>Stunde<Morgenstund, WartNochAWeng
Label>Schaffe
...
Label>WartNochAWeng
Wait>3600
Goto>Chef
Ernest