home *** CD-ROM | disk | FTP | other *** search
/ MPC Wizard 3.0 / WIZARD3_0.ISO / drivers / graf_a_g / ct_453 / win3 / mixfiles.bat < prev   
DOS Batch File  |  1992-03-18  |  781b  |  24 lines

  1. @echo off
  2. rem  MIXFILES.BAT
  3. rem  Updates Windows 3.0 SETUP.INF file.
  4.  
  5. if not exist system\setup.inf goto error
  6. if not exist system\setup30.inf goto error
  7.  
  8. echo ┌─────────────────────────────────────────────────┐
  9. echo │ Adding New Drivers to Windows SETUP.INF file.   │
  10. echo │ Original SETUP.INF will be copied to SETUP.OLD. │
  11. echo └─────────────────────────────────────────────────┘
  12. copy system\setup.inf system\setup.old >nul
  13. addlines system\setup.inf system\setup30.inf >nul
  14. del system\setup30.inf >nul
  15. goto exit
  16.  
  17. :error
  18. echo ┌─────────────────────────────────────────────────┐
  19. echo │ Files SETUP.INF and SETUP30.INF not found in    │
  20. echo │ the Windows System directory.  No changes made. │
  21. echo └─────────────────────────────────────────────────┘
  22.  
  23. :exit
  24.