DUN settings for IE
-
Anybody know a way to programmatically change the IE Connection Options? Is there an API or a specific registry key? I need to change it from "Never dial a connection" to "Dial when a network connection is not present". Like it or not, I'm right.
-
Anybody know a way to programmatically change the IE Connection Options? Is there an API or a specific registry key? I need to change it from "Never dial a connection" to "Dial when a network connection is not present". Like it or not, I'm right.
Look at the changes at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings. When setting the value from "Never dial a connection" to "Dial when a network connection is not present" the value EnableAutodial changes from 0 to 1. Easy util for monitoring registry changes: http://www.sysinternals.com/ntw2k/source/regmon.shtml. Succes!
-
Look at the changes at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings. When setting the value from "Never dial a connection" to "Dial when a network connection is not present" the value EnableAutodial changes from 0 to 1. Easy util for monitoring registry changes: http://www.sysinternals.com/ntw2k/source/regmon.shtml. Succes!
Thank you very much! Like it or not, I'm right.