Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
changeHomePage "[URL unfurl="true"]http://website1"[/URL]
changeHomePage2 "[URL unfurl="true"]http://website2"[/URL]
Sub changeHomePage(byval URL)
set objShell=Wscript.CreateObject("Wscript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\" & _
"Internet Explorer\Main\Start Page", URL, "REG_SZ"
end sub
Sub changeHomePage2(byval URL)
set objShell=Wscript.CreateObject("Wscript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\" & _
"Internet Explorer\Main\Secondary Start Pages", URL, "REG_SZ"
end sub