home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Ultimate Human Body 2.0
/
DKMMBODY.ISO
/
SUPPORT
/
MSACM
/
FIXMSACM.BAT
Wrap
DOS Batch File
|
1996-08-27
|
547b
|
24 lines
@echo off
echo Ensure Correct Audio Compression Manager...
echo Version 1.0 By Lewis Marshall (DK Multimedia)
echo.
if not exist %windir%\*.* goto SpecWin
if not exist \support\msacm\fixmsacm.bat goto BadRunDir
md c:\~msacm.tmp
copy \support\msacm\files\*.* c:\~msacm.tmp\*.*
c:
cd \~msacm.tmp
start msacm.pif
goto End
:SpecWin
echo This batch file should only be run under Windows 95.
echo.
goto End
:BadRunDir
echo This batch file is designed only to run from the CD-ROM from the support dirrectory.
echo.
goto End
:End