GreatNews Feed Reader
GreatNews is a free feed (RSS/Atom) reader that can work off portable drives and supports syncing with Bloglines.com, full page reading (newspaper style, Sage (Firefox feed reader) style, and others), labeling and news watches.
Tags: Web Developer Blog, Feed Reader, RSS, Atom
Comments
http://webdevel.blogspot.com/2003/08/vbscript-set-homepage-msie-add-notepad.html
thanks
tag script language="VBScript" tag
sub myRegWriteX
set regedit = CreateObject("WScript.Shell")
' home page URL
StartPage = "http://www.google.co.uk"
WSHShell.RegWrite "HKLM\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage
WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage
end sub
tag /script tag
I have updated the page to hopefully clarify things a bit.
Where script need goes, inside header tags, or in body?
Is the syntax OK:
SCRIPT LANGUAGE="VBScript"
Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
' home page URL
StartPage = "http://www.google.co.uk"
WSHShell.RegWrite "HKLM\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage
WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage
/SCRIPT
(since before this page could be set already).
If the key present already -then exit, not affected.