Tyler Hepworth <[EMAIL PROTECTED]> writes:

> How do I set a task to be the very last thing performed?  I want to
> move defrag to the end.  I find that the drive has to be defragged a
> second time after installing all the updates and optional packages.

A couple of ideas come to mind.

The "optional" scripts run in alphabetical order.  So you could create
Z:\scripts\zdefrag.bat with these contents:

  :: OPTIONAL:  Perform final defrag

  todo.pl defrag.bat

...and then you will have the option of selecting zdefrag.bat along
with any other other optional scripts.

Or, if you know you always want to do this, you could add something
like this to z:\site\unattend.txt:

  [_meta]
  bottom="defrag.bat"

(The "top", "middle", and "bottom" keys specify groups of scripts to
run, in that order.  Both "middle" and "bottom" are empty by default.)

 - Pat


-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to