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.

36 lines
705 B

  1. @echo off
  2. setlocal
  3. if "%1" == "" goto nobld
  4. set bld=%1
  5. set iptddist=\\iptdalpha3\pubs.ie4
  6. set installdir=%systemroot%\symbols
  7. set testfile=exe\iexplore.dbg
  8. set tree=%iptddist%\bld%bld%\x86\drop\retail\Symbols
  9. if not exist %tree%\%testfile% goto badbld
  10. if not exist %installdir%\dll mkdir %installdir%\dll
  11. if not exist %installdir%\exe mkdir %installdir%\exe
  12. echo Installing IE4 symbols for NT (%bld%)
  13. copy %tree%\exe\*.dbg %installdir%\exe
  14. copy %tree%\dll\*.dbg %installdir%\dll
  15. goto done
  16. :badbld
  17. echo Error: Invalid build number or tree is not accessible
  18. goto usage
  19. :nobld
  20. echo Error: No build number specified
  21. goto usage
  22. :usage
  23. echo Usage: %0 bldno
  24. :done