Link to home
Create AccountLog in
Web Browsers

Web Browsers

--

Questions

--

Followers

Top Experts

Avatar of RobWasho
RobWasho

Set 2 Home Page tabs in IE7 using Group Policy
Is it possible to set 2 Home Page tabs in IE7 using Group Policy?

I have set the default in User Configuration > Windows Settings > Internet Explorer Maintenance > URLs > Important URLs...

Zero AI Policy

We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.


Avatar of mrrooniemrroonie🇬🇧

multiple homepages are kept in the following registry keys:

Start Page (1st Tab): HKCU\Software\Microsoft\Internet Explorer\Main\Start Page
Secondary Pages (Other Tabs): HKCU\Software\Microsoft\Internet Explorer\Main\Secondary Start Pages

You could script it so the registry keys are set each time a user logs on.

 

Avatar of RobWashoRobWasho

ASKER

Thanks but can this not be set in Group Policy?

ASKER CERTIFIED SOLUTION
Avatar of mrrooniemrroonie🇬🇧

Link to home
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.
Create Account


I've got it. Using logon scripts. You can use a GPO for user or computer to run the script.
GPO Location:
User config/windows settings/scripts/logon
The code:
// JavaScript Document
var navOpenInBackgroundTab = 0x1000;
var oIE = new ActiveXObject("InternetExplorer.Application");
oIE.Navigate2("http://www.homepage1.com");
oIE.Navigate2("http://www.homepage2.com", navOpenInBackgroundTab);
oIE.Visible = true;

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.

Web Browsers

Web Browsers

--

Questions

--

Followers

Top Experts

Web browsers are applications used primarily to display documents, files and media from the Internet, identified by a Uniform Resource Identifier (URI) that can be a page, image, video or other file. Some browsers require the use of add-ons or extensions to safely render the information they receive; others have systems built into them to perform the same functions.