Reputation: 860
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
Please suggest.
Upvotes: 3
Views: 1568
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
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