How to set default browser home page (IE) using C #?

How can I programmatically change the default browser homepage to C #?

+1
source share
3 answers

Set it in this registry entry:

HKCU\Software\Microsoft\Internet Explorer\Main\Start Page
+5
source

Look at this, but not in C #, but you can easily handle registry materials in C #.

http://www.microsoft.com/technet/scriptcenter/resources/qanda/nov04/hey1108.mspx

Please do not make this code work on my machine!

+1
source

:

HKCU\Software\Clients\StartMenuInternet

. reg_sz , .

HKLM\Software\Clients\StartMenuInternet

C # Registry Changes Help

see here: http://www.csharphelp.com/archives2/archive392.html

0
source

All Articles