on Windows 98 UBCD, we have the 'UNATTEND.BAT' file.. these file do several things before setup....
but i'm update it:
1 - i changed the setup parameters from "/id /ie /im /iq /is /it /m /nf /nh /nm /nr /nx /if" to "/pi".... for avoid faster setup and install the components... to "/pi" is for avoid the Blue Screen on modern computers.. something about hardware;
2 - the 'UNATTEND.BAT' file, have 1 option when we have more than 1GB:
:over1gig
SET NEXT1=GOSTART
:: because the user is using over 1 gig, we need to limit the anount that Windows sees.
CLS
echo.
echo.
echo. *** One gigabyte or more of RAM found !!! ***
echo.
echo. - the program found %RUM% megabytes of installed RAM.
echo.
echo. PLEASE NOTE: Windows 98se was not designed to use more than 1 gig of RAM!
my question is: can i avoid the test about have more than 1GB's?
or
can i update these:
:MAKERAQ
CLS
echo.
echo.
echo. Please choose an option below...
echo.
echo. R -- use some of the excess RAM as a RAM disk.
echo. W -- use the Work-around
echo. Q -- to QUIT setup and return to the main menu
echo.
choice>nul /c:wqr /n
if errorlevel 3 goto MAKERAM
if errorlevel 2 goto MyMenu
echo.
echo. You've chosen the work-around. Are you sure you wish to continue? [Y/N]
choice>nul /c:yn /n
if errorlevel 2 goto over1gig
echo.
echo. Now adding settings to SYSTEM.INI...
WAIT 1
IF NOT EXIST "%MyDrive%\%MyWinDir%\nul" MD "%MyDrive%\%MyWinDir%"
echo.[boot]> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.[keyboard]>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.[boot.description]>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.[386Enh]>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo MaxPhysPage=19999>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo.[vcache]>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
echo MaxFileCache=65535>> "%MyDrive%\%MyWinDir%\SYSTEM.INI"
IF NOT EXIST "%MyDrive%\%MyWinDir%\nul" MD "%MyDrive%\%MyWinDir%"
IF NOT EXIST "%MyDrive%\%MyWinDir%\system\nul" MD "%MyDrive%\%MyWinDir%\system"
IF NOT EXIST "%MyDrive%\%MyWinDir%\system\vmm32\nul" MD "%MyDrive%\%MyWinDir%\system\vmm32"
IF EXIST "%CDROM%\setup\vcache.vxd" COPY "%CDROM%\setup\vcache.vxd" "%MyDrive%\%MyWinDir%\system\vmm32" /Y >nul
for use the memory that i have(2GB's)?