577
edits
Changes
disable auto updater; seperate out plugin installers
Notepad++ is a great little code editor and general plain text editor available at [[http://sourceforge.net/projects/notepad-plus/ SourceForge]].<br/>
Plug-ins are available from [[http://sourceforge.net/projects/npp-plugins/ SourceForge]] too.
= WPKG Package for Notepad++ =
This package supports Windows 32-bit and 64-bit.<br/>
<source lang="xml">
<package
<remove cmd='%ComSpec% /c if exist "%ProgramFiles(x86)%\Notepad++\uninstall.exe" "%ProgramFiles(x86)%\Notepad++\uninstall.exe" /S' />
</package>
</source>
= WPKG Installer for some Notepad++ Plugins =
<source lang="xml">
<package
<remove cmd='%ComSpec% /c if exist "%ProgramFiles(x86)%\Notepad++\plugins\docMonitor.dll" del /f /q "%ProgramFiles(x86)%\Notepad++\plugins\docMonitor.dll"' />
</package>
</source>
= Disable Auto Updater =
"Thanks to GUP, (Generic Updater for win32) project (see http://sourceforge.net/projects/gup-w32/ and http://gup-w32.sourceforge.net/) Notepad++ v4.6 and later has the capacity to search and install the update package (if available) from Internet. Only Installer integrates the auto-updater module (optional). So if you use zipped version, you have to download GUP from its project page, create "update" directory in Notepad++ installed directory, unzip the package into it then edit gup.xml file."
== Manually ==
For each user, choose Preferences → Misc → disable Enable Notepad++ auto-updater
== Command-line ==
move "%PROGRAMFILES%\Notepad++\updater" "%PROGRAMFILES%\Notepad++\disabled-updater"
== WPKG ==
<source lang="xml">
<install cmd='cmd /C move "%PROGRAMFILES%\Notepad++\updater" "%PROGRAMFILES%\Notepad++\disabled-updater"' />
<upgrade cmd='cmd /C move "%PROGRAMFILES%\Notepad++\updater" "%PROGRAMFILES%\Notepad++\disabled-updater"' />
</source>
[[Category:Silent Installers]]