Difference between revisions of "Notepad plus plus"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 9: Line 9:
 
         priority="1">
 
         priority="1">
 
         <check type="uninstall" condition="exists" path="Notepad++" />
 
         <check type="uninstall" condition="exists" path="Notepad++" />
         <install cmd="\\path\to\server\npp.3.5.Installer.exe /S" />
+
         <install cmd="%SOFTWARE%\npp\npp.3.5.Installer.exe /S" />
 
         <remove cmd="%PROGRAMFILES%\Notepad++\uninstall.exe /S" />
 
         <remove cmd="%PROGRAMFILES%\Notepad++\uninstall.exe /S" />
 
</package>
 
</package>
 
</pre>
 
</pre>
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 20:18, 2 October 2006

Notepad++ is a great little code editor.

<package
        id="notepad++"
        name="Notepad ++ 3.5"
        revision="1"
        reboot="false"
        priority="1">
        <check type="uninstall" condition="exists" path="Notepad++" />
        <install cmd="%SOFTWARE%\npp\npp.3.5.Installer.exe /S" />
        <remove cmd="%PROGRAMFILES%\Notepad++\uninstall.exe /S" />
</package>