home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / get_nmake.bat < prev    next >
Encoding:
DOS Batch File  |  2003-01-07  |  464 b   |  25 lines

  1. @echo off
  2. set nmake=nmake15.exe
  3. echo off
  4. set ms=http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe
  5. @echo on
  6. perl -MLWP::Simple -e "getstore(qq{%ms%}, qq{%nmake%})"
  7. @echo off
  8. if not exist %nmake% goto :error1
  9. @echo on
  10. nmake15.exe
  11. @echo off
  12. if not exist NMAKE.EXE goto :error2
  13. echo Extraction of NMAKE.EXE succeeded
  14. goto :end
  15. :error1
  16. echo Fetch of %nmake% failed
  17. goto :end
  18. :error2
  19. echo Extraction of NMAKE.EXE failed
  20. goto :end
  21. :end
  22. pause
  23.  
  24.  
  25.