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
16 lines
309 B
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
|
|
)
|
|
|