Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
309 B

  1. REM copy the ntfrs logs from the ntdev DCs
  2. rem
  3. SETLOCAL ENABLEEXTENSIONS
  4. set FRSBASEDIR=\\davidor2\ntfrs
  5. set dest=%FRSBASEDIR%\logs\ntdev
  6. if NOT EXIST %dest% (md %dest%)
  7. for %%x in (%*) do (
  8. if NOT EXIST %dest%\%%x (md %dest%\%%x)
  9. xcopy /d \\ntdsdc%%x\debug\ntfrs.* %dest%\%%x
  10. )