Changes

Jump to: navigation, search

Notepad plus plus

829 bytes added, 15:56, 10 September 2009
disable auto updater; seperate out plugin installers
This is a silent installer for Notepad++.
 
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/>
It contains additional packages for several plug-ins as an example.
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
 
<packages
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../xsd/packages.xsd" >
<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>
</packages>
</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 &rarr; Misc &rarr; 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]]
577
edits

Navigation menu