Link to home
Start Free TrialLog in
Avatar of morseus2
morseus2

asked on

Disable auto dialing on Win9x

I know it is possible by doing this : tools - internet options - connections -  never dial a connection

But how to do it other way ? in registry or ... ?  I am writing some Delphi app which will do it automatically.

If possible , how to do it without restarting PC?
Avatar of sunray_2003
sunray_2003
Flag of United States of America image

Is this you want

Disable the "Log on using dial-up connection" Check Box

During logon Windows allows users to optionally connect to a Windows domain using dial-up networking, this tweak can be used to disable that option. Start/Run/Regedit

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon.  Value Name: RasDisable
Data Type: REG_SZ (String Value), Value Data: (0 = restriction disabled, 1 = restriction enabled).  

Create a new String value, or modify the existing value, called 'RasDisable' and edit the value according to the settings below. Exit your registry, you may need to restart or log out of Windows for the change to take effect.



Source : http://www.kellys-korner-xp.com/xp_modem.htm

Sunray
Avatar of morseus2
morseus2

ASKER

ok, w8
Have you checked that .. Has it helped you ?

Sunray
: - (     not.  maybe I posted bad question.

I need to check and apply checkbox called 'Never dial a connection' in internet explorer     automatically and without reboot.
ASKER CERTIFIED SOLUTION
Avatar of sunray_2003
sunray_2003
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I made an app in delphi which is using dial-up connection. After connection is enabled the internet explorer opens pop-up windows with buttons       connect    -   stay offline

I can easily disable this bug on my PC but the problem is  I want to run this app on other computers.

Thanks

Sunray