Click here to Skip to main content
15,887,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello all,

I do coding for fun but I am not a professional.

I would like to know if it is possible to create a mini app to change IE8 registry entries, launch IE8 and when the user closes IE8, the reg entries are set to the default values ?

Can some one give me some guidance? I heard about handlers.

I will be using Visual Basic 2010 Express Edition

Thanks for your help,
G
Posted
Comments
bbirajdar 7-Feb-13 14:59pm    
Yes..It is possible..
namerg 7-Feb-13 15:02pm    
:) Need more advise and guidance
namerg 7-Feb-13 21:51pm    
Let's say the app does the registry changes and open IE.
If I open another process or instance of IE, will IE open with its default registry entries ?

1 solution

Here's the guide to change registry entries
Read, write and delete from registry with C#[^]


Launch a program like IE 8
http://stackoverflow.com/questions/5168612/launch-program-with-parameters[^]

Then follow the first step again to reset the registry entries
 
Share this answer
 
Comments
namerg 13-Feb-13 17:36pm    
@aspnet_regiis -i
I am stuck in the following:
//**************************BEGIN GENERAL TAB***********************************
//BROWSING HISTORY/CHECK FOR NEWER VERSIONS OF STORED PAGES

//Select the RegistryHive you wish to read from
RegistryKey key = RegistryKey.OpenRemoteBaseKey(RegistryHive.CurrentUser, "");

//Select the path within the hive
RegistryKey subkey1 = key.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings");

Question: How do I navigate inside that registry path look for the existence of a name.?

Thanks for your help
bbirajdar 14-Feb-13 2:25am    
Read the value for the name , if it does not return anything, that means it does not exist

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900