amitesh
amitesh

Reputation: 860

Changing Internet Explorer settings programmatically

In Internet Explorer, Internet Options -> Advanced we have Multiple check-box for settings.

I want to programmatically manage all of them.

I looked at Internet Explorer API but doesn't find much.

Edit

I want specifically Uncheck these two check boxes

enter image description here

Please suggest.

Upvotes: 3

Views: 1568

Answers (2)

L0j1k
L0j1k

Reputation: 12635

You are more than likely going to need to change the registry settings to programmatically alter those fields. You can start poking around this key:

HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings

Upvotes: 2

Icarus
Icarus

Reputation: 63956

You will have to manipulate the Registry keys as most of those settings are very likely to stored in the Registry.

To programmatically access the Registry, you can use the RegistryKey class, for example.

Upvotes: 0

Related Questions