搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Set first run homepage on the installer

more options

I am deploying Firefox to a bunch of users in my company. I want to know if there is a way to set the installar so it will go to a homepage of my choosing on the first run, and allow users to change it going forward. Anyone have suggestions?

Thanks! Frank

I am deploying Firefox to a bunch of users in my company. I want to know if there is a way to set the installar so it will go to a homepage of my choosing on the first run, and allow users to change it going forward. Anyone have suggestions? Thanks! Frank

所有回复 (1)

more options

It sounds like your best option is to include the following code in an AutoConfig file:

defaultPref("browser.startup.homepage", "http://example.com");

That will set the default homepage, but will also allow the user to change the homepage, which sounds like what you want to do.

The best part is that if you have to deploy it on many computers and don't want to manually implement the AutoConfig file on all of the computers, you can create your own custom Firefox installation file for Windows. See Repackaging the Windows Installer for more information.

Hope this helps.