Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

FireFox Proxy Settings via PDQ deploy

Hi guys,,

is it possible ? how? 😃

Regards!

0

Comments

2 comments
Date Votes
  • Hello,

    • If you need to specify a proxy server, copy the following information into "mozilla.cfg" :

    //Firefox Default Settings //set proxy server settings pref("network.proxy.ftp", "proxy.server.local"); pref("network.proxy.ftp_port", 8080); pref("network.proxy.gopher", "proxy.server.local"); pref("network.proxy.gopher_port", 8080); pref("network.proxy.http", "proxy.server.local"); pref("network.proxy.http_port", 8080); pref("network.proxy.no_proxies_on", "localhost, 127.0.0.1, *.server.local"); pref("network.proxy.type", 1); pref("network.proxy.share_proxy_settings", true); // use the same proxy settings for all protocols

    • Then copy "mozilla.cfg" in %ProgramFiles(x86)%\Mozilla Firefox\

    • Create a new text file called ‘policies.js’ and copy in the following information:

    pref("general.config.obscure_value", 0); pref("general.config.filename", "mozilla.cfg");

    • Then copy ‘policies.js’ in %ProgramFiles(x86)%\Mozilla Firefox\defaults\pref
    0
  • I would use Group Policy for this. Mozilla released the ADMX a few months ago.

    https://support.mozilla.org/en-US/kb/customizing-firefox-using-group-policy

    Computer > Admin Templates > Mozilla > Firefox > Proxy Settings

    0