Windows 98 without a network driver installed boots in just 9 seconds, while it takes 43 seconds to boot with a NDIS2 driver with the ethernet connection detached.
The DOS NDIS driver tries to detect the network connection speed , first. Then the TCP/IP protocol stack tries to get an IP through DHCP. Both tasks are useless while booting in the move. Luckily there is a very easy way to select if we want to boot with or without the network adapter driver.
For the NDIS2 driver to work it is necesary to run NET START command from the AUTOEXEC.BAT. Wihout it the driver gets disabled after booting. As the result the system boots in 9 seconds, instead of 43.
Using the [MENU] section in the CONFIG.SYS it is possible to create a boot menu and give an option to start the system with the network driver disabled.
an example for the CONFIG.SYS
[MENU] MenuItem=WINDOWS,Windows 98 MenuItem=NONET,Windows 98 - bez sieci MenuDefault=WINDOWS,10 [WINDOWS] device=C:\WINDOWS\COMMAND\display.sys con=(ega,,1) Country=048,852,C:\WINDOWS\COMMAND\country.sys [NONET] include WINDOWS
an example for the AUTOEXEC.BAT
GOTO %CONFIG% :WINDOWS C:\WINDOWS\net start :NONET mode con codepage prepare=((852) C:\WINDOWS\COMMAND\ega.cpi) mode con codepage select=852 keyb pl,,C:\WINDOWS\COMMAND\keybrd4.sys
The code page and keyboard settings should be different in your case (unless you are using Polish language).



Help


Back to top









