Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Set first run homepage on the installer

  • 1 trả lời
  • 1 gặp vấn đề này
  • 15 lượt xem
  • Trả lời mới nhất được viết bởi Wesley Branton

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

Tất cả các câu trả lời (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.