You don't need any 3rd party software to disconnect from the internet in Win98 SE [or any other 9x (95/98/ME) OS for that matter].
Here are 3 simple ways you can do this:
1. Install a free(ware) firewall [if you haven't already] and use it to block all [both incoming + outgoing] traffic:
http://www.mdgx.com/fw.htm#FWLExample:
If using Kerio 2.1.5 -> right-click its taskbar icon -> left-click "Stop All Traffic".
Kerio 2.1.5 [2.06 MB, English]:
http://www.gwdg.de/samba/windows/persfw/ke....1.5-en-win.exeNo need for reboot.
2. This is for cable modems only.
Example:
Right-click "My Computer" desktop icon -> Properties -> Device Manager -> expand [double-click] Network adapters -> hightlight your Ethernet adapter name connected to your cable modem -> double-click it -> check the "Disable in this hardware profile" box -> click OK -> reboot/restart Windows when prompted.
Needs reboot.
xDSL modem owners can do this in a similar way.
Please keep in mind that xDSL modems use a WAN [Wide Area Network] adapter.
3. This is for cable modems only.
Just move to any other location the Ethernet adapter driver file, found in most cases in %windir%\SYSTEM [%windir% = usually C:\WINDOWS].
Example:
I'm using a Siemens SpeedStream USB 10/100 Ethernet Adapter, which uses 1001.SYS as its driver.
You can write a DOS style batch file to move the driver file away [or back] with a single mouse click.
Using Notepad, create a new text file, and call it InternetOFF.BAT (example):
QUOTE
@ECHO OFF
IF NOT EXIST %windir%\SYSTEM\1001.SYS GOTO END
IF NOT EXIST %windir%\BAKUPS\NUL MD %windir%\BAKUPS
IF EXIST %windir%\SYSTEM\1001.SYS MOVE %windir%\SYSTEM\1001.SYS %windir%\BAKUPS
%windir%\RUNDLL32.EXE %windir%\SYSTEM\SHELL32.DLL,SHExitWindowsEx 2
:END
CLS
EXIT
InternetOFF.BAT also reboots after moving away the driver.
To restore the driver, create another batch file called InternetON.BAT (example):
QUOTE
@ECHO OFF
IF EXIST %windir%\SYSTEM\1001.SYS GOTO END
IF NOT EXIST %windir%\BAKUPS\1001.SYS GOTO END
MOVE %windir%\BAKUPS\1001.SYS %windir%\SYSTEM
%windir%\RUNDLL32.EXE %windir%\SYSTEM\SHELL32.DLL,SHExitWindowsEx 2
:END
CLS
EXIT
Needs reboot.
xDSL modem owners can do this in a similar way.
HTH [Hope This Helps]