How can I change/set the homepage for multiple browsers at once?

4

So I have a project that involves me resetting the homepage of about ~70 computers that are in a test group to a new home page. In the past I've done this via registry, but this time I have to target all browsers rather than just one. I've been Googling, but it seems like Firefox might not be able to do this easily...

Is there some program / setting that I could save / run once per computer to reset the home-page on the major browsers mentioned above?

A_Elric

Posted 2013-06-14T15:11:53.560

Reputation: 155

Maybe, but this is really more of a sysadmin-style question. When I wanted to disable zoom via registry I was point here and got: [HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\ZOOM] "ZoomDisabled"=dword:00000001 – A_Elric – 2013-06-14T15:19:11.720

Well if i want to do something like this i will code something my self using C# you can go download Visual Studio Express Edition

– poqdavid – 2013-06-14T15:23:21.663

I could probably whip something up in java or C++ to handle the task, but I feel like that would be over-engineering the issue. – A_Elric – 2013-06-14T15:24:05.527

Well in my idea that will be the best way :) – poqdavid – 2013-06-14T15:27:21.697

@Damien.Bell I think that wouldn't be too difficult in this case, although I'd probably stick with a more scripting-oriented language (like C# or Python). – Breakthrough – 2013-06-14T15:37:39.073

@idavid - The fact you want to handle this for multiple browsers sounds like you should write a simple console application that does it and just run across your domain on the computers you push it to on startup. Furthermore the ability to set the homepage for all thhe mainstream browsers by their registry key is well documented. I would agree this is a Stackoverflow question even if you use Powershell to do it. – Ramhound – 2013-06-14T15:56:08.667

@Ramhound: "Furthermore the ability to set the homepage for all the mainstream browsers by their registry key is well documented" - Besides IE, which mainstream browsers store their homepage settings in the registry? – Karan – 2013-06-15T00:19:48.697

Actually, given that you're trying to administer a large number of computers, [SF] would actually be the best fit, although I see no problem with having it here on SU if you prefer. Look up documentation on the user.js file, for a start. – nhinkle – 2013-06-15T03:25:22.723

@Karan - It was a more general statement. I did a quick Google search and was able to find a script for both Firefox and Chrome without much trouble. – Ramhound – 2013-06-15T11:45:49.860

Answers

1

Are you going to need to do this more than once?

If so, I would change them (individually this time) to a page you create which redirects to the homepage you want. Then any future changes would just take editing the address on your pass-through page.

A.M.

Posted 2013-06-14T15:11:53.560

Reputation: 889