home *** CD-ROM | disk | FTP | other *** search
/ Eyewitness: History of the World 2.0 / dkmmhis2.iso / support / msacm / fixmsacm.bat
DOS Batch File  |  1998-01-22  |  559b  |  24 lines

  1. @echo off
  2. echo Ensure Correct Audio Compression Manager...
  3. echo Version 1.1 By Lewis Marshall (DK Multimedia)
  4. echo.
  5. if not exist %windir%\*.* goto SpecWin
  6. if not exist \support\Win95\msacm\fixmsacm.bat goto BadRunDir
  7. md c:\~msacm.tmp
  8. copy \support\Win95\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