Chexk the root of your boot drive to see if AUTOEXEC.BAT and CONFDIG.SYS exist. If they do, compare them to the examples below.
Config.sys
DEVICE=C:\Windows\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\Windows\EMM386.EXE NOEMS
FILES=30
STACKS=0,0
BUFFERS=20
Autoexec.bat
@echo off
SET PATH=C:\Windows;C:\
LH C:\Windows\COMMAND\MSCDEX.EXE /D:123
LH C:\MOUSE\MOUSE.EXE
C:\DOS\SMARTDRV.EXE /X
FILES=30
STACKS=0,0
BUFFERS=20
Of course,neither CONFIG.SYS nor AUTOEXEC.BAT appear in the file.
If either or both are missing, create as needed and save to the root directory. If you want Windows to start immediately after these files are processed, add a line at the bottom of AUTOEXEC,BAT
In the line "LH C:\Windows\COMMAND\MSCDEX.EXE /D:123",
D: is the drive letter of the CD/DVD and C:\Windows..... is the path to its device driver. Modify as necessary for your unit.
Change the mouse and SMARTDRV lines to match the directories for the files on the system.
If you want Windows to start immediately after processing these files, add a line to AUTOEXEC.BAT
Win
Resave AUTOEXEC.BAT.
Final note:
These files work for most systems. If any of the lines fail, adjustments are necessary. In particular, the LH will work only is there is enough memory space created by HIMEM.SYS.
=========