Ref: 07950003
Title: 3+Open Server Shutdown Via Batch File
Date: 10/2/89

Copyright 3Com Corporation, 1991.  All rights reserved.

Instead of using the stop service from the NETADMIN screen which
loses the link without confirmation, use the following example batch
file to perform this function:

@REM SHUTDOWN.CMD
ECHO ~ Stopping RDR    !>LCD$
NET STOP RDR /Y                   /*stops redirector
ECHO ~ Stopping Lazy   !>LCD$
CACHE /LAZY:C:OFF                 /*stops lazy write delay
ECHO ~ Stopping Cache  !>LCD$
CACHE /STOP                       /*stops cache
ECHO ~ Server is Shutdown !>LCD$

Invoke this batch file using the AT command and specify a time
when the shutdown should occur:

NET ADMIN \\SERVER /C AT <time> <name of batch/cmd file>

To get more details on the AT command, type AT ? and press [Return].
