home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MPC Wizard 3.0
/
WIZARD3_0.ISO
/
drivers
/
graf_a_g
/
ct_453
/
win3
/
mixfiles.bat
< prev
Wrap
DOS Batch File
|
1992-03-18
|
781b
|
24 lines
@echo off
rem MIXFILES.BAT
rem Updates Windows 3.0 SETUP.INF file.
if not exist system\setup.inf goto error
if not exist system\setup30.inf goto error
echo ┌─────────────────────────────────────────────────┐
echo │ Adding New Drivers to Windows SETUP.INF file. │
echo │ Original SETUP.INF will be copied to SETUP.OLD. │
echo └─────────────────────────────────────────────────┘
copy system\setup.inf system\setup.old >nul
addlines system\setup.inf system\setup30.inf >nul
del system\setup30.inf >nul
goto exit
:error
echo ┌─────────────────────────────────────────────────┐
echo │ Files SETUP.INF and SETUP30.INF not found in │
echo │ the Windows System directory. No changes made. │
echo └─────────────────────────────────────────────────┘
:exit