Source code of Windows XP (NT5)
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.

29 lines
615 B

  1. @echo off
  2. REM FRSTRACK.CMD - Tracks testing of FRS and captures log files.
  3. REM
  4. REM this jacket is needed because cmd has to be invoked with /x:on and /v:on
  5. rem
  6. SETLOCAL ENABLEEXTENSIONS
  7. rem first look on \\scratch\scratch\ntfrs
  8. rem then try \\davidor2\ntfrs.
  9. set basedir=\\davidor2\ntfrs
  10. if EXIST %basedir%\frstrack.cmd (
  11. cmd /x:on /v:on /c "%BASEDIR%\frstrck1.cmd %basedir%"
  12. ) else (
  13. set BASEDIR2=\\scratch\scratch\ntfrs
  14. if EXIST %FRSBASEDIR2%\frstrack.cmd (
  15. cmd /x:on /v:on /c "%BASEDIR2%\frstrck1.cmd %basedir2%"
  16. ) ELSE (
  17. echo Error - can't access server.
  18. )
  19. )