home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2000 September / Gamestar_22_2000-09_cd1.bin / PATCHE / DS9Patch1.exe / InstallPatch.bat < prev   
DOS Batch File  |  2000-08-03  |  1KB  |  45 lines

  1. @echo off
  2. echo         -------------------------------------
  3. echo         DS9 The Fallen - Demo Patch Installer
  4. echo         -------------------------------------
  5. echo.
  6. echo This batch file replaces certain system files, improving
  7. echo performance related to the Miles sound driver and the
  8. echo Direct 3D driver.
  9. echo.
  10. echo NOTE: It does not alter any game content.
  11. echo.
  12. pause
  13. if not exist default.ini goto usage
  14. attrib -r default.ini
  15. attrib -r d3ddrv.dll
  16. if not exist default.old goto noolddefault
  17. del default.old
  18. :noolddefault
  19. if not exist d3ddrv.old goto nooldd3ddrv
  20. del d3ddrv.old
  21. :nooldd3ddrv
  22. ren default.ini default.old
  23. ren d3ddrv.dll d3ddrv.old
  24. ren default.new default.ini
  25. ren d3ddrv.new d3ddrv.dll
  26. if not exist ds9.ini goto success
  27. attrib -r ds9.ini
  28. del ds9.ini
  29. goto success
  30.  
  31. :usage
  32. echo.
  33. echo -- Error: Could not find system files to overwrite --
  34. echo.
  35. echo Please make sure that the patch is installed into the 
  36. echo system directory where the game was originally installed.
  37. goto end
  38.  
  39. :success
  40. echo.
  41. echo -- Installation complete --
  42.  
  43. :end
  44. echo.
  45. pause