Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Setting the home page to be computer, rather than user specific

  • 2 svar
  • 1 har dette problemet
  • 10 views
  • Siste svar av cor-el

more options

I run a computer lab and would like to set the home page to be computer, rather than user specific. Is this possible ?

I run a computer lab and would like to set the home page to be computer, rather than user specific. Is this possible ?

All Replies (2)

more options

When you say "Computer", do you mean a common web page on the intranet (local network), or opening each computer's files as a home page?

more options

Use a mozilla.cfg file in the Firefox program folder to lock prefs or specify default values for all users.

Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

You can use these functions in mozilla.cfg:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

pref("browser.startup.homepage", "<your preferred home page>");