Hi, please try the following 1. create a script for all your NT clients Script example: @echo off REM TSM Client Scheduler Restart script REM ---------------------------------------------------------------------- REM File location: C:\tsm\baclient REM File name: schedrestart.cmd REM Location of log file: C:\tsm\baclient REM Log file name: schedrestart.log REM ---------------------------------------------------------------------- echo *** BEGIN TSM Client Scheduler restart *** 1> C:\tsm\baclient\schedrestart.log 2>&1 date /t 1>> C:\tsm\baclient\schedrestart.log 2>>&1 time /t 1>> C:\tsm\baclient\schedrestart.log 2>>&1 net stop "TSM Client Scheduler" 1>> C:\tsm\baclient\schedrestart.log 2>>&1 net start "TSM Client Scheduler" 1>> C:\tsm\baclient\schedrestart.log 2>>&1 echo *** END TSM Client Scheduler restart *** 1>> C:\tsm\baclient\schedrestart.log 2>>&1 2. copy this script to all your TSM Clients 3. create a client scheduler script with a command and expiration date Scheduler example: def sched domain NT_sched_restart Type=Client desc="NT TSM Client Scheduler Restart" action=command objects="C:\tsm\baclient\schedrestart.cmd" startd=08/15/01 startt=07:00:00 expiration=08/15/01 4. associate your NT clients with the scheduler def assoc domain NT_sched_restart NTClient1,NTClient2, ... Sincerly Juergen Heinrich Verdi Information Consult GmbH Systemsmanagement Niederlassung Berlin Wittestra�e 30K D-13509 Berlin http://www.verdi-ag.de
