Disable auto-update in Notepad++












77















Is it possible to configure Notepad++ to stop checking for new versions each time it is run?



Every time Nodepad++ is started a dialog pops with:




An update package is available, do you want to download it?











share|improve this question















migrated from stackoverflow.com Apr 20 '10 at 3:55


This question came from our site for professional and enthusiast programmers.























    77















    Is it possible to configure Notepad++ to stop checking for new versions each time it is run?



    Every time Nodepad++ is started a dialog pops with:




    An update package is available, do you want to download it?











    share|improve this question















    migrated from stackoverflow.com Apr 20 '10 at 3:55


    This question came from our site for professional and enthusiast programmers.





















      77












      77








      77


      6






      Is it possible to configure Notepad++ to stop checking for new versions each time it is run?



      Every time Nodepad++ is started a dialog pops with:




      An update package is available, do you want to download it?











      share|improve this question
















      Is it possible to configure Notepad++ to stop checking for new versions each time it is run?



      Every time Nodepad++ is started a dialog pops with:




      An update package is available, do you want to download it?








      updates notepad++






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 27 '10 at 13:23









      Peter Mortensen

      8,376166185




      8,376166185










      asked Apr 18 '10 at 19:30









      KeyslingerKeyslinger

      76921123




      76921123




      migrated from stackoverflow.com Apr 20 '10 at 3:55


      This question came from our site for professional and enthusiast programmers.









      migrated from stackoverflow.com Apr 20 '10 at 3:55


      This question came from our site for professional and enthusiast programmers.
























          9 Answers
          9






          active

          oldest

          votes


















          89














          Simply go to:



          Settings -> Preferences -> Misc -> and deselect "Enable Notepad++ auto-updater"






          share|improve this answer





















          • 1





            This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

            – Apelsin
            May 11 '15 at 22:51








          • 1





            @Apelsin It exists in Notepad++ 6.7.7 on Windows.

            – Andrew Morton
            May 17 '15 at 18:37






          • 3





            v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

            – gromit190
            Mar 30 '16 at 6:24






          • 1





            @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

            – Shiv
            Aug 2 '16 at 23:45








          • 2





            @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

            – Shiv
            Aug 4 '16 at 5:02



















          55














          You may also be looking to turn off plugin update checking, in which case go to:



          Plugins -> Plugin Manager -> Show Plugin Manager -> Settings (bottom left), and deselect "Notify of plugin updates at startup".






          share|improve this answer



















          • 4





            God this has been bothering me so much, every gd time I open it. Thanks!

            – gakera
            Mar 10 '15 at 11:11











          • I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

            – Toby J
            Mar 29 '17 at 13:57











          • UX is like 90% of Notepad++...

            – Andrew
            Dec 12 '17 at 13:00



















          20














          In newer versions of Notepad++ the option to disable automatic updating no longer appears in the Options dialog.



          You can simply rename the C:Program FilesNotepad++updater directory to stop this feature. (e.g. rename it to updater_disabled)



          Credit to http://wpkg.org/Notepad_plus_plus for suggesting the solution.






          share|improve this answer



















          • 1





            Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

            – ThisClark
            Jan 20 '15 at 19:12



















          6














          Find and edit this file



          C:Users\...User...AppDataRoamingNotepad++config.xml


          where ...User... is your username.



          Find the line that reads something like this:



          <GUIConfig name="noUpdate" intervalDays="15" nextUpdateDate="20141114">no</GUIConfig>


          and change the 'no' to a 'yes'.
          In effect, you're telling Notepad++ that 'yes, you want no updates'.



          Another line I've changed is this one:



          <GUIConfig name="RememberLastSession">no</GUIConfig>


          where I've changed the default 'yes' to a 'no'.



          It infuriated me that Notepad++ opened pretty much evey file I'd ever opened, every time I started it, long after I'd lost any interest in any of those files.



          I don't know why Notepad++ shows options in its preferences dialog when clearly it just ignores them.



          You might also have a look at EditPadLite (free) and/or EditPadPro (not free, but not too expensive).
          Certainly better looking, better documented, and the 'lite' version has all I need.






          share|improve this answer

































            4














            While installing the application,



            Notepad++ Setup - Choose components Dialog- Select the type of Install - Deselect the Auto-Updater check box.






            share|improve this answer































              1














              Expanding on existing answers, here's my method for programmatically updating this:



              # Note:
              # - Notepad++ must be closed when you run this because when Notepad++ does its closing process, it re-writes the config.xml file with the config from memory
              # - This script only updates one user profile, the current user's

              $Path = "C:Users$($env:username)AppDataRoamingNotepad++config.xml"

              # Disable auto-checking for updates
              (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)no</GUIConfig>', '$1yes</GUIConfig>' | Out-File $Path

              # To re-enable auto-checking for updates
              (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)yes</GUIConfig>', '$1no</GUIConfig>' | Out-File $Path





              share|improve this answer































                0














                If you have updates pending (you can start an update without admin), but are unable to complete them (because you don't have admin), you will get an annoying message each time you open it, asking you to complete the update.



                You can make this go away by deleting %appdata%Notepad++pluginsConfigPluginManagerGpUp.xml. This will also delete the plugin_install_temp folder which contains the updates, when you next run it.






                share|improve this answer































                  0














                  Regarding the renaming of the directory C:Program FilesNotepad++updater to something else (updater_disabled), I can confirm that for the latest Notepad++ Version 7.6.2 (Yellow Vests edition), this would disable also the tab Plugins admin. Anyway users need admin rights to install plugins, but it is a new functionality that gets knocked-out.






                  share|improve this answer































                    0














                    I just created a simple Preferences>Windows Settings>Files that deletes the files in the updater folder.



                    enter image description here






                    share|improve this answer

























                      Your Answer








                      StackExchange.ready(function() {
                      var channelOptions = {
                      tags: "".split(" "),
                      id: "3"
                      };
                      initTagRenderer("".split(" "), "".split(" "), channelOptions);

                      StackExchange.using("externalEditor", function() {
                      // Have to fire editor after snippets, if snippets enabled
                      if (StackExchange.settings.snippets.snippetsEnabled) {
                      StackExchange.using("snippets", function() {
                      createEditor();
                      });
                      }
                      else {
                      createEditor();
                      }
                      });

                      function createEditor() {
                      StackExchange.prepareEditor({
                      heartbeatType: 'answer',
                      autoActivateHeartbeat: false,
                      convertImagesToLinks: true,
                      noModals: true,
                      showLowRepImageUploadWarning: true,
                      reputationToPostImages: 10,
                      bindNavPrevention: true,
                      postfix: "",
                      imageUploader: {
                      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                      allowUrls: true
                      },
                      onDemand: true,
                      discardSelector: ".discard-answer"
                      ,immediatelyShowMarkdownHelp:true
                      });


                      }
                      });














                      draft saved

                      draft discarded


















                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f132797%2fdisable-auto-update-in-notepad%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown

























                      9 Answers
                      9






                      active

                      oldest

                      votes








                      9 Answers
                      9






                      active

                      oldest

                      votes









                      active

                      oldest

                      votes






                      active

                      oldest

                      votes









                      89














                      Simply go to:



                      Settings -> Preferences -> Misc -> and deselect "Enable Notepad++ auto-updater"






                      share|improve this answer





















                      • 1





                        This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

                        – Apelsin
                        May 11 '15 at 22:51








                      • 1





                        @Apelsin It exists in Notepad++ 6.7.7 on Windows.

                        – Andrew Morton
                        May 17 '15 at 18:37






                      • 3





                        v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

                        – gromit190
                        Mar 30 '16 at 6:24






                      • 1





                        @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

                        – Shiv
                        Aug 2 '16 at 23:45








                      • 2





                        @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

                        – Shiv
                        Aug 4 '16 at 5:02
















                      89














                      Simply go to:



                      Settings -> Preferences -> Misc -> and deselect "Enable Notepad++ auto-updater"






                      share|improve this answer





















                      • 1





                        This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

                        – Apelsin
                        May 11 '15 at 22:51








                      • 1





                        @Apelsin It exists in Notepad++ 6.7.7 on Windows.

                        – Andrew Morton
                        May 17 '15 at 18:37






                      • 3





                        v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

                        – gromit190
                        Mar 30 '16 at 6:24






                      • 1





                        @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

                        – Shiv
                        Aug 2 '16 at 23:45








                      • 2





                        @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

                        – Shiv
                        Aug 4 '16 at 5:02














                      89












                      89








                      89







                      Simply go to:



                      Settings -> Preferences -> Misc -> and deselect "Enable Notepad++ auto-updater"






                      share|improve this answer















                      Simply go to:



                      Settings -> Preferences -> Misc -> and deselect "Enable Notepad++ auto-updater"







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Apr 20 '10 at 4:12









                      Jared Harley

                      11.4k33249




                      11.4k33249










                      answered Apr 18 '10 at 19:32









                      Marcos PlaconaMarcos Placona

                      1,030910




                      1,030910








                      • 1





                        This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

                        – Apelsin
                        May 11 '15 at 22:51








                      • 1





                        @Apelsin It exists in Notepad++ 6.7.7 on Windows.

                        – Andrew Morton
                        May 17 '15 at 18:37






                      • 3





                        v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

                        – gromit190
                        Mar 30 '16 at 6:24






                      • 1





                        @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

                        – Shiv
                        Aug 2 '16 at 23:45








                      • 2





                        @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

                        – Shiv
                        Aug 4 '16 at 5:02














                      • 1





                        This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

                        – Apelsin
                        May 11 '15 at 22:51








                      • 1





                        @Apelsin It exists in Notepad++ 6.7.7 on Windows.

                        – Andrew Morton
                        May 17 '15 at 18:37






                      • 3





                        v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

                        – gromit190
                        Mar 30 '16 at 6:24






                      • 1





                        @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

                        – Shiv
                        Aug 2 '16 at 23:45








                      • 2





                        @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

                        – Shiv
                        Aug 4 '16 at 5:02








                      1




                      1





                      This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

                      – Apelsin
                      May 11 '15 at 22:51







                      This is an incorrect answer because this feature was removed from Notepad++ and it has not returned for at least 5 years. I can confirm that what @JamesGecko wrote is still the case.

                      – Apelsin
                      May 11 '15 at 22:51






                      1




                      1





                      @Apelsin It exists in Notepad++ 6.7.7 on Windows.

                      – Andrew Morton
                      May 17 '15 at 18:37





                      @Apelsin It exists in Notepad++ 6.7.7 on Windows.

                      – Andrew Morton
                      May 17 '15 at 18:37




                      3




                      3





                      v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

                      – gromit190
                      Mar 30 '16 at 6:24





                      v6.9 has this feature, I just disable auto updates by following the steps provided in this answer.

                      – gromit190
                      Mar 30 '16 at 6:24




                      1




                      1





                      @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

                      – Shiv
                      Aug 2 '16 at 23:45







                      @SimonD Chrome installs a service to do the auto-update as the browser runs with user credentials but the service runs with the required install privilege. I think every program installing a service to provide auto-update functionality is a bit of overkill and would prefer it in as few programs as possible.

                      – Shiv
                      Aug 2 '16 at 23:45






                      2




                      2





                      @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

                      – Shiv
                      Aug 4 '16 at 5:02





                      @SimonD I would say being able to roll Notepad++ out with the autoupdate feature turned off and pushing out updates via AD would be better. Autoupdate nag is really bad for a text editor - only web facing things like Flash or browsers should do it.

                      – Shiv
                      Aug 4 '16 at 5:02













                      55














                      You may also be looking to turn off plugin update checking, in which case go to:



                      Plugins -> Plugin Manager -> Show Plugin Manager -> Settings (bottom left), and deselect "Notify of plugin updates at startup".






                      share|improve this answer



















                      • 4





                        God this has been bothering me so much, every gd time I open it. Thanks!

                        – gakera
                        Mar 10 '15 at 11:11











                      • I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

                        – Toby J
                        Mar 29 '17 at 13:57











                      • UX is like 90% of Notepad++...

                        – Andrew
                        Dec 12 '17 at 13:00
















                      55














                      You may also be looking to turn off plugin update checking, in which case go to:



                      Plugins -> Plugin Manager -> Show Plugin Manager -> Settings (bottom left), and deselect "Notify of plugin updates at startup".






                      share|improve this answer



















                      • 4





                        God this has been bothering me so much, every gd time I open it. Thanks!

                        – gakera
                        Mar 10 '15 at 11:11











                      • I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

                        – Toby J
                        Mar 29 '17 at 13:57











                      • UX is like 90% of Notepad++...

                        – Andrew
                        Dec 12 '17 at 13:00














                      55












                      55








                      55







                      You may also be looking to turn off plugin update checking, in which case go to:



                      Plugins -> Plugin Manager -> Show Plugin Manager -> Settings (bottom left), and deselect "Notify of plugin updates at startup".






                      share|improve this answer













                      You may also be looking to turn off plugin update checking, in which case go to:



                      Plugins -> Plugin Manager -> Show Plugin Manager -> Settings (bottom left), and deselect "Notify of plugin updates at startup".







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Apr 18 '10 at 19:55









                      wersimmonwersimmon

                      842512




                      842512








                      • 4





                        God this has been bothering me so much, every gd time I open it. Thanks!

                        – gakera
                        Mar 10 '15 at 11:11











                      • I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

                        – Toby J
                        Mar 29 '17 at 13:57











                      • UX is like 90% of Notepad++...

                        – Andrew
                        Dec 12 '17 at 13:00














                      • 4





                        God this has been bothering me so much, every gd time I open it. Thanks!

                        – gakera
                        Mar 10 '15 at 11:11











                      • I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

                        – Toby J
                        Mar 29 '17 at 13:57











                      • UX is like 90% of Notepad++...

                        – Andrew
                        Dec 12 '17 at 13:00








                      4




                      4





                      God this has been bothering me so much, every gd time I open it. Thanks!

                      – gakera
                      Mar 10 '15 at 11:11





                      God this has been bothering me so much, every gd time I open it. Thanks!

                      – gakera
                      Mar 10 '15 at 11:11













                      I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

                      – Toby J
                      Mar 29 '17 at 13:57





                      I swear, I love Notepad++ more than anything, it's the one app I miss most on Linux but this guy REALLY needs some UX help :D Thanks for showing me how to disable that!!

                      – Toby J
                      Mar 29 '17 at 13:57













                      UX is like 90% of Notepad++...

                      – Andrew
                      Dec 12 '17 at 13:00





                      UX is like 90% of Notepad++...

                      – Andrew
                      Dec 12 '17 at 13:00











                      20














                      In newer versions of Notepad++ the option to disable automatic updating no longer appears in the Options dialog.



                      You can simply rename the C:Program FilesNotepad++updater directory to stop this feature. (e.g. rename it to updater_disabled)



                      Credit to http://wpkg.org/Notepad_plus_plus for suggesting the solution.






                      share|improve this answer



















                      • 1





                        Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

                        – ThisClark
                        Jan 20 '15 at 19:12
















                      20














                      In newer versions of Notepad++ the option to disable automatic updating no longer appears in the Options dialog.



                      You can simply rename the C:Program FilesNotepad++updater directory to stop this feature. (e.g. rename it to updater_disabled)



                      Credit to http://wpkg.org/Notepad_plus_plus for suggesting the solution.






                      share|improve this answer



















                      • 1





                        Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

                        – ThisClark
                        Jan 20 '15 at 19:12














                      20












                      20








                      20







                      In newer versions of Notepad++ the option to disable automatic updating no longer appears in the Options dialog.



                      You can simply rename the C:Program FilesNotepad++updater directory to stop this feature. (e.g. rename it to updater_disabled)



                      Credit to http://wpkg.org/Notepad_plus_plus for suggesting the solution.






                      share|improve this answer













                      In newer versions of Notepad++ the option to disable automatic updating no longer appears in the Options dialog.



                      You can simply rename the C:Program FilesNotepad++updater directory to stop this feature. (e.g. rename it to updater_disabled)



                      Credit to http://wpkg.org/Notepad_plus_plus for suggesting the solution.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Sep 26 '12 at 16:23









                      lessthanideallessthanideal

                      495511




                      495511








                      • 1





                        Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

                        – ThisClark
                        Jan 20 '15 at 19:12














                      • 1





                        Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

                        – ThisClark
                        Jan 20 '15 at 19:12








                      1




                      1





                      Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

                      – ThisClark
                      Jan 20 '15 at 19:12





                      Excellent! I used your answer to disable updates in a computer lab, looping through them with PsExec like so psexec \lab315-%x cmd.exe /c ren "c:Program Files (x86)Notepad++updater" "updater_disable"

                      – ThisClark
                      Jan 20 '15 at 19:12











                      6














                      Find and edit this file



                      C:Users\...User...AppDataRoamingNotepad++config.xml


                      where ...User... is your username.



                      Find the line that reads something like this:



                      &lt;GUIConfig name="noUpdate" intervalDays="15" nextUpdateDate="20141114"&gt;no&lt;/GUIConfig&gt;


                      and change the 'no' to a 'yes'.
                      In effect, you're telling Notepad++ that 'yes, you want no updates'.



                      Another line I've changed is this one:



                      &lt;GUIConfig name="RememberLastSession"&gt;no&lt;/GUIConfig&gt;


                      where I've changed the default 'yes' to a 'no'.



                      It infuriated me that Notepad++ opened pretty much evey file I'd ever opened, every time I started it, long after I'd lost any interest in any of those files.



                      I don't know why Notepad++ shows options in its preferences dialog when clearly it just ignores them.



                      You might also have a look at EditPadLite (free) and/or EditPadPro (not free, but not too expensive).
                      Certainly better looking, better documented, and the 'lite' version has all I need.






                      share|improve this answer






























                        6














                        Find and edit this file



                        C:Users\...User...AppDataRoamingNotepad++config.xml


                        where ...User... is your username.



                        Find the line that reads something like this:



                        &lt;GUIConfig name="noUpdate" intervalDays="15" nextUpdateDate="20141114"&gt;no&lt;/GUIConfig&gt;


                        and change the 'no' to a 'yes'.
                        In effect, you're telling Notepad++ that 'yes, you want no updates'.



                        Another line I've changed is this one:



                        &lt;GUIConfig name="RememberLastSession"&gt;no&lt;/GUIConfig&gt;


                        where I've changed the default 'yes' to a 'no'.



                        It infuriated me that Notepad++ opened pretty much evey file I'd ever opened, every time I started it, long after I'd lost any interest in any of those files.



                        I don't know why Notepad++ shows options in its preferences dialog when clearly it just ignores them.



                        You might also have a look at EditPadLite (free) and/or EditPadPro (not free, but not too expensive).
                        Certainly better looking, better documented, and the 'lite' version has all I need.






                        share|improve this answer




























                          6












                          6








                          6







                          Find and edit this file



                          C:Users\...User...AppDataRoamingNotepad++config.xml


                          where ...User... is your username.



                          Find the line that reads something like this:



                          &lt;GUIConfig name="noUpdate" intervalDays="15" nextUpdateDate="20141114"&gt;no&lt;/GUIConfig&gt;


                          and change the 'no' to a 'yes'.
                          In effect, you're telling Notepad++ that 'yes, you want no updates'.



                          Another line I've changed is this one:



                          &lt;GUIConfig name="RememberLastSession"&gt;no&lt;/GUIConfig&gt;


                          where I've changed the default 'yes' to a 'no'.



                          It infuriated me that Notepad++ opened pretty much evey file I'd ever opened, every time I started it, long after I'd lost any interest in any of those files.



                          I don't know why Notepad++ shows options in its preferences dialog when clearly it just ignores them.



                          You might also have a look at EditPadLite (free) and/or EditPadPro (not free, but not too expensive).
                          Certainly better looking, better documented, and the 'lite' version has all I need.






                          share|improve this answer















                          Find and edit this file



                          C:Users\...User...AppDataRoamingNotepad++config.xml


                          where ...User... is your username.



                          Find the line that reads something like this:



                          &lt;GUIConfig name="noUpdate" intervalDays="15" nextUpdateDate="20141114"&gt;no&lt;/GUIConfig&gt;


                          and change the 'no' to a 'yes'.
                          In effect, you're telling Notepad++ that 'yes, you want no updates'.



                          Another line I've changed is this one:



                          &lt;GUIConfig name="RememberLastSession"&gt;no&lt;/GUIConfig&gt;


                          where I've changed the default 'yes' to a 'no'.



                          It infuriated me that Notepad++ opened pretty much evey file I'd ever opened, every time I started it, long after I'd lost any interest in any of those files.



                          I don't know why Notepad++ shows options in its preferences dialog when clearly it just ignores them.



                          You might also have a look at EditPadLite (free) and/or EditPadPro (not free, but not too expensive).
                          Certainly better looking, better documented, and the 'lite' version has all I need.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited May 25 '15 at 9:35









                          Kunal

                          1,59051726




                          1,59051726










                          answered May 25 '15 at 6:08









                          orourkeamorourkeam

                          6111




                          6111























                              4














                              While installing the application,



                              Notepad++ Setup - Choose components Dialog- Select the type of Install - Deselect the Auto-Updater check box.






                              share|improve this answer




























                                4














                                While installing the application,



                                Notepad++ Setup - Choose components Dialog- Select the type of Install - Deselect the Auto-Updater check box.






                                share|improve this answer


























                                  4












                                  4








                                  4







                                  While installing the application,



                                  Notepad++ Setup - Choose components Dialog- Select the type of Install - Deselect the Auto-Updater check box.






                                  share|improve this answer













                                  While installing the application,



                                  Notepad++ Setup - Choose components Dialog- Select the type of Install - Deselect the Auto-Updater check box.







                                  share|improve this answer












                                  share|improve this answer



                                  share|improve this answer










                                  answered Oct 21 '11 at 0:51









                                  thriyampaganthriyampagan

                                  411




                                  411























                                      1














                                      Expanding on existing answers, here's my method for programmatically updating this:



                                      # Note:
                                      # - Notepad++ must be closed when you run this because when Notepad++ does its closing process, it re-writes the config.xml file with the config from memory
                                      # - This script only updates one user profile, the current user's

                                      $Path = "C:Users$($env:username)AppDataRoamingNotepad++config.xml"

                                      # Disable auto-checking for updates
                                      (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)no</GUIConfig>', '$1yes</GUIConfig>' | Out-File $Path

                                      # To re-enable auto-checking for updates
                                      (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)yes</GUIConfig>', '$1no</GUIConfig>' | Out-File $Path





                                      share|improve this answer




























                                        1














                                        Expanding on existing answers, here's my method for programmatically updating this:



                                        # Note:
                                        # - Notepad++ must be closed when you run this because when Notepad++ does its closing process, it re-writes the config.xml file with the config from memory
                                        # - This script only updates one user profile, the current user's

                                        $Path = "C:Users$($env:username)AppDataRoamingNotepad++config.xml"

                                        # Disable auto-checking for updates
                                        (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)no</GUIConfig>', '$1yes</GUIConfig>' | Out-File $Path

                                        # To re-enable auto-checking for updates
                                        (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)yes</GUIConfig>', '$1no</GUIConfig>' | Out-File $Path





                                        share|improve this answer


























                                          1












                                          1








                                          1







                                          Expanding on existing answers, here's my method for programmatically updating this:



                                          # Note:
                                          # - Notepad++ must be closed when you run this because when Notepad++ does its closing process, it re-writes the config.xml file with the config from memory
                                          # - This script only updates one user profile, the current user's

                                          $Path = "C:Users$($env:username)AppDataRoamingNotepad++config.xml"

                                          # Disable auto-checking for updates
                                          (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)no</GUIConfig>', '$1yes</GUIConfig>' | Out-File $Path

                                          # To re-enable auto-checking for updates
                                          (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)yes</GUIConfig>', '$1no</GUIConfig>' | Out-File $Path





                                          share|improve this answer













                                          Expanding on existing answers, here's my method for programmatically updating this:



                                          # Note:
                                          # - Notepad++ must be closed when you run this because when Notepad++ does its closing process, it re-writes the config.xml file with the config from memory
                                          # - This script only updates one user profile, the current user's

                                          $Path = "C:Users$($env:username)AppDataRoamingNotepad++config.xml"

                                          # Disable auto-checking for updates
                                          (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)no</GUIConfig>', '$1yes</GUIConfig>' | Out-File $Path

                                          # To re-enable auto-checking for updates
                                          (Get-Content $Path | Out-String) -Replace '(.*noUpdate.*)yes</GUIConfig>', '$1no</GUIConfig>' | Out-File $Path






                                          share|improve this answer












                                          share|improve this answer



                                          share|improve this answer










                                          answered Mar 8 '18 at 15:42









                                          Elijah W. GagneElijah W. Gagne

                                          49144




                                          49144























                                              0














                                              If you have updates pending (you can start an update without admin), but are unable to complete them (because you don't have admin), you will get an annoying message each time you open it, asking you to complete the update.



                                              You can make this go away by deleting %appdata%Notepad++pluginsConfigPluginManagerGpUp.xml. This will also delete the plugin_install_temp folder which contains the updates, when you next run it.






                                              share|improve this answer




























                                                0














                                                If you have updates pending (you can start an update without admin), but are unable to complete them (because you don't have admin), you will get an annoying message each time you open it, asking you to complete the update.



                                                You can make this go away by deleting %appdata%Notepad++pluginsConfigPluginManagerGpUp.xml. This will also delete the plugin_install_temp folder which contains the updates, when you next run it.






                                                share|improve this answer


























                                                  0












                                                  0








                                                  0







                                                  If you have updates pending (you can start an update without admin), but are unable to complete them (because you don't have admin), you will get an annoying message each time you open it, asking you to complete the update.



                                                  You can make this go away by deleting %appdata%Notepad++pluginsConfigPluginManagerGpUp.xml. This will also delete the plugin_install_temp folder which contains the updates, when you next run it.






                                                  share|improve this answer













                                                  If you have updates pending (you can start an update without admin), but are unable to complete them (because you don't have admin), you will get an annoying message each time you open it, asking you to complete the update.



                                                  You can make this go away by deleting %appdata%Notepad++pluginsConfigPluginManagerGpUp.xml. This will also delete the plugin_install_temp folder which contains the updates, when you next run it.







                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Jul 6 '18 at 13:56









                                                  ChrisChris

                                                  1034




                                                  1034























                                                      0














                                                      Regarding the renaming of the directory C:Program FilesNotepad++updater to something else (updater_disabled), I can confirm that for the latest Notepad++ Version 7.6.2 (Yellow Vests edition), this would disable also the tab Plugins admin. Anyway users need admin rights to install plugins, but it is a new functionality that gets knocked-out.






                                                      share|improve this answer




























                                                        0














                                                        Regarding the renaming of the directory C:Program FilesNotepad++updater to something else (updater_disabled), I can confirm that for the latest Notepad++ Version 7.6.2 (Yellow Vests edition), this would disable also the tab Plugins admin. Anyway users need admin rights to install plugins, but it is a new functionality that gets knocked-out.






                                                        share|improve this answer


























                                                          0












                                                          0








                                                          0







                                                          Regarding the renaming of the directory C:Program FilesNotepad++updater to something else (updater_disabled), I can confirm that for the latest Notepad++ Version 7.6.2 (Yellow Vests edition), this would disable also the tab Plugins admin. Anyway users need admin rights to install plugins, but it is a new functionality that gets knocked-out.






                                                          share|improve this answer













                                                          Regarding the renaming of the directory C:Program FilesNotepad++updater to something else (updater_disabled), I can confirm that for the latest Notepad++ Version 7.6.2 (Yellow Vests edition), this would disable also the tab Plugins admin. Anyway users need admin rights to install plugins, but it is a new functionality that gets knocked-out.







                                                          share|improve this answer












                                                          share|improve this answer



                                                          share|improve this answer










                                                          answered Jan 14 at 14:49









                                                          ShizdennShizdenn

                                                          1




                                                          1























                                                              0














                                                              I just created a simple Preferences>Windows Settings>Files that deletes the files in the updater folder.



                                                              enter image description here






                                                              share|improve this answer






























                                                                0














                                                                I just created a simple Preferences>Windows Settings>Files that deletes the files in the updater folder.



                                                                enter image description here






                                                                share|improve this answer




























                                                                  0












                                                                  0








                                                                  0







                                                                  I just created a simple Preferences>Windows Settings>Files that deletes the files in the updater folder.



                                                                  enter image description here






                                                                  share|improve this answer















                                                                  I just created a simple Preferences>Windows Settings>Files that deletes the files in the updater folder.



                                                                  enter image description here







                                                                  share|improve this answer














                                                                  share|improve this answer



                                                                  share|improve this answer








                                                                  edited Feb 20 at 19:13









                                                                  Ramhound

                                                                  20.6k156286




                                                                  20.6k156286










                                                                  answered Feb 20 at 18:49









                                                                  onefiscusonefiscus

                                                                  1




                                                                  1






























                                                                      draft saved

                                                                      draft discarded




















































                                                                      Thanks for contributing an answer to Super User!


                                                                      • Please be sure to answer the question. Provide details and share your research!

                                                                      But avoid



                                                                      • Asking for help, clarification, or responding to other answers.

                                                                      • Making statements based on opinion; back them up with references or personal experience.


                                                                      To learn more, see our tips on writing great answers.




                                                                      draft saved


                                                                      draft discarded














                                                                      StackExchange.ready(
                                                                      function () {
                                                                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f132797%2fdisable-auto-update-in-notepad%23new-answer', 'question_page');
                                                                      }
                                                                      );

                                                                      Post as a guest















                                                                      Required, but never shown





















































                                                                      Required, but never shown














                                                                      Required, but never shown












                                                                      Required, but never shown







                                                                      Required, but never shown

































                                                                      Required, but never shown














                                                                      Required, but never shown












                                                                      Required, but never shown







                                                                      Required, but never shown







                                                                      Popular posts from this blog

                                                                      If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                                                                      Alcedinidae

                                                                      Can an atomic nucleus contain both particles and antiparticles? [duplicate]