home *** CD-ROM | disk | FTP | other *** search
/ Enciclopedia de la Ciencia 2.0 / ZETACIE2.bin / Support / MSACM / Fixmsacm.bat
DOS Batch File  |  1998-07-01  |  547b  |  24 lines

  1. @echo off
  2. echo Ensure Correct Audio Compression Manager...
  3. echo Version 1.0 By Lewis Marshall (DK Multimedia)
  4. echo.
  5. if not exist %windir%\*.* goto SpecWin
  6. if not exist \support\msacm\fixmsacm.bat goto BadRunDir
  7. md c:\~msacm.tmp
  8. copy \support\msacm\files\*.* c:\~msacm.tmp\*.*
  9. c:
  10. cd \~msacm.tmp
  11. start msacm.pif
  12. goto End
  13.  
  14. :SpecWin
  15. echo This batch file should only be run under Windows 95.
  16. echo.
  17. goto End
  18.  
  19. :BadRunDir
  20. echo This batch file is designed only to run from the CD-ROM from the support dirrectory.
  21. echo.
  22. goto End
  23.  
  24. :End