Difference between revisions of "WinCalendarTime"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(fix)
Line 2: Line 2:
  
 
[http://wincalendartime.sourceforge.net/ 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!)
 
[http://wincalendartime.sourceforge.net/ 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!)
 
=== Installer ===
 
 
Apparently, WinCalendarTime uses InnoSetup because the following works.
 
 
<pre>WinCalendarTimeSetup-1.0.exe /silent</pre>
 
 
Since this doesn't start the program yet, you should also try
 
 
<pre>%ProgramFiles%\WinCalendarTime\WinCalendarTime.exe</pre>
 
  
 
=== Package definition ===
 
=== Package definition ===
Line 36: Line 26:
 
</pre>
 
</pre>
  
=== Open Questions ===
 
 
Does the above start WinCalendarTime on every login?
 
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 19:38, 26 April 2007

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' >
    <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>