Difference between revisions of "GeoGebra"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (bugifx)
m (Added category)
Line 21: Line 21:
  
 
[[category:Silent Installers|GeoGebra]]
 
[[category:Silent Installers|GeoGebra]]
 +
[[category:NSIS]]

Revision as of 22:49, 14 June 2008

GeoGebra is a dynamic geometry, algebra and calculus software for schools.

Note: I'm not sure if the silent installation uses the systems default locale, so maybe you want to change the language (you can do it after the install, though). If someone knows how to implement this, please adjust the code accordingly. This or this document may help.

When unpacking the setup file there is a cancel button visible for some seconds. The user could abort the installation here. So if someone knows how to suppress this, you know what to do! ;-)

<package
		id="geogebra"
		name="GeoGebra 3.0 RC 1"
		revision="1"
		reboot="false"
		priority="1">
		<depends package-id="java6" />
		<check type="uninstall" condition="exists" path="GeoGebra" />
		<upgrade cmd="%SOFTWARE%\GeoGebra_3_0_0_0_Release_Candidate_1.exe /s" />
		<install cmd="%SOFTWARE%\GeoGebra_3_0_0_0_Release_Candidate_1.exe /s" />
		<remove cmd='"%PROGRAMFILES%\GeoGebra\uninstaller\Uninstall GeoGebra.exe" /s' />
</package>