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.

30 lines
703 B

  1. @echo off
  2. setlocal
  3. pushd %RazzleToolPath%\PostBuildScripts
  4. set ChkDosNetLog=%Temp%\MissingFiles_%RANDOM%
  5. echo Looking for missing files.
  6. echo Results in: %ChkDosNetLog%
  7. echo.
  8. echo Workstation Files...
  9. echo Workstation File Check > %ChkDosNetLog%
  10. perl ckdosnet.pl %_NTTREE% >> %ChkDosNetLog%
  11. echo Server Files...
  12. echo Server File Check >> %ChkDosNetLog%
  13. perl ckdosnets.pl %_NTTREE% >> %ChkDosNetLog%
  14. echo Advanced Server Files...
  15. echo Advanced Server File Check >> %ChkDosNetLog%
  16. perl ckdosnete.pl %_NTTREE% >> %ChkDosNetLog%
  17. echo DataCenter Files...
  18. echo Data Center File Check >> %ChkDosNetLog%
  19. perl ckdosnetd.pl %_NTTREE% >> %ChkDosNetLog%
  20. echo Missing Files:
  21. type %ChkDosNetLog%
  22. popd
  23. endlocal