2025-04-27 07:49:33 -04:00

17 lines
309 B
Batchfile

REM copy the ntfrs logs from the ntdev DCs
rem
SETLOCAL ENABLEEXTENSIONS
set FRSBASEDIR=\\davidor2\ntfrs
set dest=%FRSBASEDIR%\logs\ntdev
if NOT EXIST %dest% (md %dest%)
for %%x in (%*) do (
if NOT EXIST %dest%\%%x (md %dest%\%%x)
xcopy /d \\ntdsdc%%x\debug\ntfrs.* %dest%\%%x
)