Configure proxy settings in Notepad++ via Plugin Manager

前端 未结 5 1316
予麋鹿
予麋鹿 2021-02-01 04:40

I would like to configure proxy settings in Notepad++ to allow downloads from the internet via a proxy. After searching how to do that from the net I understand that I need to d

相关标签:
5条回答
  • 2021-02-01 04:54

    for 32 bit installation create a file caleld gpupOptions.xml under updater folder where gpup.exe is present

    file content

    <GUPOptions>
        <Proxy>
            <server>proxy.com</server>
            <port>8080</port>
        </Proxy>
    </GUPOptions>
    
    0 讨论(0)
  • 2021-02-01 04:55

    From the command line we have to access to the \updater folder of Notepad ++

    > cd /d C:\Program Files (x86)\Notepad++\updater
    

    then :

    > gup -options
    

    The window for proxy configuration is displayed:

    0 讨论(0)
  • 2021-02-01 05:00

    If you want to set proxy for Plugin Manager, maybe you need to check this config file:
    %AppData%\Notepad++\plugins\config\PluginManager.ini
    There are proxy address and proxy port settings.

    But in my personal experience, it's not working. Not sure what goes wrong.
    I'm on Plugin Manager 1.4.9.0 with Notepad++ v7.5.6 (32-bit)

    0 讨论(0)
  • 2021-02-01 05:02

    Open cmd and type:

    cd /d C:\Program Files (x86)\Notepad++\updater
    gup -options
    

    A dialog comes up to set the proxy settings.

    0 讨论(0)
  • 2021-02-01 05:14

    with version 7.6.6 (april 2019) (probably onwards), you can run notepad++ as admin, use menu '?' > Set Updater Proxy... close notepad++ and open it again as standard user.

    0 讨论(0)
提交回复
热议问题