firefox proxy settings via command line

后端 未结 19 1700
闹比i
闹比i 2020-12-02 18:20

How do I change Firefox Proxy settings via command line on windows xp/2k?

Thanks

相关标签:
19条回答
  • 2020-12-02 19:12

    Thank very much, I find the answers in this website.

    Here I refer to the production of a cmd file

    by minimo

    cd /D "%APPDATA%\Mozilla\Firefox\Profiles"
    cd *.default
    set ffile=%cd%
    echo user_pref("network.proxy.http", "192.168.1.235 ");>>"%ffile%\prefs.js"
    echo user_pref("network.proxy.http_port", 80);>>"%ffile%\prefs.js"
    echo user_pref("network.proxy.type", 1);>>"%ffile%\prefs.js"
    set ffile=
    cd %windir%
    
    0 讨论(0)
提交回复
热议问题