Difference between revisions of "WinCalendarTime"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 4: Line 4:
  
 
=== Package definition ===
 
=== Package definition ===
<pre>
+
<source lang="xml">
 
+
 
<package
 
<package
 
     id="wincalendartime"
 
     id="wincalendartime"
Line 13: Line 12:
 
     priority="0">
 
     priority="0">
 
     <check type="file" condition="exists" path="%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe" />
 
     <check type="file" condition="exists" path="%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe" />
    <install cmd='"%SOFTWARE%\WinCalendarTimeSetup-1.0.exe" /sp- /silent /norestart' >
 
    <exit code="0" />
 
    </install>
 
    <install cmd='cmd /c start "" "%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe"'>       
 
    <exit code="0" />
 
    </install>
 
    <remove cmd='"%PROGRAMFILES%\WinCalendarTime\unins000.exe" /silent'>
 
        <exit code="0"/>
 
    </remove>
 
</package>
 
  
</pre>
+
    <install cmd='"%SOFTWARE%\WinCalendarTimeSetup-1.0.exe" /sp- /silent /norestart' />
 +
    <install cmd='cmd /c start "" "%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe"' />
 +
 
 +
    <remove cmd='"%PROGRAMFILES%\WinCalendarTime\unins000.exe" /silent' />
 +
</package>
 +
</source>
  
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 11:01, 1 May 2008

WinCalendarTime

WinCalendarTime "replaces the standard Windows clock with an enhanced clock, if you click on it a calendar is displayed." (It's like the nice GNOME clock!)

Package definition

<package
    id="wincalendartime"
    name="WinCalendarTime"
    revision="100"
    reboot="false"
    priority="0">
    <check type="file" condition="exists" path="%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe" />

    <install cmd='"%SOFTWARE%\WinCalendarTimeSetup-1.0.exe" /sp- /silent /norestart' />
    <install cmd='cmd /c start "" "%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe"' />

    <remove cmd='"%PROGRAMFILES%\WinCalendarTime\unins000.exe" /silent' />
</package>