Page 1 of 1
Multiple triggering events
Posted: Thu Sep 11, 2008 4:18 am
by javeld
If I want to shut down at 6 pm, provided that my virus scan has finished, there has to be some sort of ..and.. condition. Any suggestions how to do this?
Multiple triggering events
Posted: Thu Sep 11, 2008 11:15 pm
by Oleg
You may to start the task by scheduler (or another trigger) but in the task do the following:
If <condition> then
...
do something
...
end if
or
If <condition> then
...
do something
...
else
...
do something else
...
end if