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.

20 lines
476 B

  1. @echo off
  2. if exist d:\fetchwin.in erase d:\fetchwin.in
  3. if exist d:\fetchwin.txt erase d:\fetchwin.txt
  4. fetchlog http://winsebld/isapi/pstream3.dll d:\fetchwin.in %1
  5. if not exist d:\fetchwin.in goto finis
  6. todos < d:\fetchwin.in > d:\fetchwin.txt
  7. if not exist d:\fetchwin.txt goto finis
  8. erase d:\fetchwin.in
  9. start /max notepad d:\fetchwin.txt
  10. goto finis
  11. :noexe
  12. echo No fetchlog.exe in the build tree!
  13. goto finis
  14. :notodos
  15. echo No todos.exe in the c:\bin!
  16. goto finis
  17. :finis