Difference between revisions of "NoteTab"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
This is a silent installer and uninstaller for NoteTab text editor.
 
This is a silent installer and uninstaller for NoteTab text editor.
  
<package id="notetab" name="NoteTab (Text editor)" revision="1" priority="0" reboot="false">
+
<source lang="xml">
 +
<package id="notetab" name="NoteTab (Text editor)" revision="1" priority="0" reboot="false">
 
  <check type="file" condition="exists" path="%ProgramFiles%\NoteTab\NoteTab.exe" />
 
  <check type="file" condition="exists" path="%ProgramFiles%\NoteTab\NoteTab.exe" />
 
  <!-- unsure about this -->
 
  <!-- unsure about this -->
Line 8: Line 9:
 
  <remove cmd='cmd /c del /s /q "%ProgramFiles%"\NoteTab' />
 
  <remove cmd='cmd /c del /s /q "%ProgramFiles%"\NoteTab' />
 
  <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\NoteTab" '/>
 
  <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\NoteTab" '/>
</package>  
+
</package>
 +
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 20:53, 20 February 2008

This is a silent installer and uninstaller for NoteTab text editor.

<package id="notetab" name="NoteTab (Text editor)" revision="1" priority="0" reboot="false">
 <check type="file" condition="exists" path="%ProgramFiles%\NoteTab\NoteTab.exe" />
 <!-- unsure about this -->
 <install cmd='cmd /c mkdir "%ProgramFiles%\NoteTab" ' />
 <install cmd='cmd /c copy %SOFTWARE%\notetab\Raw\*.* "%ProgramFiles%"\NoteTab' />
 <remove cmd='cmd /c del /s /q "%ProgramFiles%"\NoteTab' />
 <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\NoteTab" '/>
</package>