How to Exit Windows 2000 Automatically Using a Batch File

  • Thread starter Thread starter venkatesh
  • Start date Start date
V

venkatesh

hi! i am using windows2000 server and we are having 24
windows2000professional clients.i want to schedule
automatic shutdown daily at 10pm on client machines, i
found there is soome batch file . could any one help me
out and also p[lease specify the batch file.

awaiting for early reply
 
Shutdown a local w2k computer, closing all applications in 5 seconds.

shutdown /L /C /T:5 "Message - shutdown in 5 seconds"

L = local
C = close apps
T:5 = 5 seconds till shutdown

Place that in a batch file or task schedule it.

Remotely:

shutdown [\\computername] /l /t::5 "message" /c

source: Resource Kit help file, w2rktool.chm
 
Back
Top