Listing 2: Rdiskplus.bat @echo off REM REM *** RDISKPLUS.BAT REM ***Centralized Management for RDISKs REM REM ***Alessandro Iacopetti - 12/10/1998 REM ***a.iacopetti@cedacriovest.it REM cd /d %~dp0 for /f "delims=*" %%i in ('type serverlist.txt') do call :cp_rdisk %%i goto :eof :cp_rdisk REM *** Creates a directory for each of the servers mkdir %1 cd %1 REM *** Note: robocopy is from the resource kit REM *** you can use a simple copy instead robocopy \\%1\ADMIN$\REPAIR . /e /np /r:10 cd .. goto :eof