Page 1 of 1
Template Option - Run Search at Once
Posted: 28 Aug 2008 16:39
by eurytos
I would like to be able to set the option 'Run Search at Once' per template instead of all or nothing. Usually I prefer to run the search at once but I have a couple that I don't.
It doesn't have to be added into the GUI. I would be perfectly happy with an ini tweak
edit: this is not a huge deal, but it would save me a couple clicks. If it will take a lot of work and nobody else cares about it then don't waste your time.
Re: Template Option - Run Search at Once
Posted: 29 Aug 2008 13:45
by admin
Puuh, search templates... totally different world (I'm somewhere between scripting and unicode support right now)...

... this should be discussed thoroughly since it is a very old and time-tested thing. I really don't have the time to go into search templates right now. I guess you will have to wait with this one...
Re: Template Option - Run Search at Once
Posted: 02 Sep 2008 09:42
by admin
eurytos wrote:I would like to be able to set the option 'Run Search at Once' per template instead of all or nothing. Usually I prefer to run the search at once but I have a couple that I don't.
The new
loadsearch command is all you need to fulfill your wildest search template dreams. Comes with next upload...

Re: Template Option - Run Search at Once
Posted: 09 Sep 2008 19:29
by eurytos
admin wrote:eurytos wrote:I would like to be able to set the option 'Run Search at Once' per template instead of all or nothing. Usually I prefer to run the search at once but I have a couple that I don't.
The new
loadsearch command is all you need to fulfill your wildest search template dreams. Comes with next upload...

Thanks!
Re: Template Option - Run Search at Once
Posted: 16 Sep 2008 16:05
by eurytos
Just posting this as a follow up....
I created a rough little script to run my template of choice and it works very nice!
here is the code in case anyone wants to modify it. (It is far from fancy so don't expect any miracles)
Code: Select all
// loadsearch <template>[, <options>]
// <options> = r,l,e,x (defaults to rl)
// r = run search at once
// l = load search location
// e = load excluded folders
// x = none of the above
"Friday Backup Check (RUN MONDAY MORNING) : t1"
// Load Search Location
loadsearch "Friday Backup Check (RUN MONDAY MORNING)", rl;
"Monday Backup Check (RUN TUESDAY MORNING) : t2"
// Load Search Location
loadsearch "Monday Backup Check (RUN TUESDAY MORNING)", rl;
"Tuesday Backup Check (RUN WEDNESDAY MORNING) : t3"
// Load Search Location
loadsearch "Tuesday Backup Check (RUN WEDNESDAY MORNING)", rl;
"Wednesday Backup Check (RUN THURSDAY MORNING) : t4"
// Load Search Location
loadsearch "Wednesday Backup Check (RUN THURSDAY MORNING)", rl;
"Thursday Backup Check (RUN FRIDAY MORNING) : t5"
// Load Search Location
loadsearch "Thursday Backup Check (RUN FRIDAY MORNING)", rl;