Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change default browser

Status
Not open for further replies.

Skully620

Programmer
Jul 17, 2003
3
0
0
US
Need a script to change the default browser from Netscape to IE...
Can anyone help?
 
you'll need to find the key to chnage and use some thing like this

Set Sh = CreateObject("WScript.Shell")
key = "HKEY_CURRENT_USER\"
Sh.RegWrite key & "WSHTest\", "testkeydefault"
Sh.RegWrite key & "WSHTest\string1", "testkeystring1"
Sh.RegWrite key & "WSHTest\string2", "testkeystring2", "REG_SZ"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top