Difference between revisions of "Netphone Client"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with 'A IP-telephony client for the Netphone application solution: [http://geschaeftskunden.telekom.de/tsi/de/425766/Home/Produkte-und-Loesungen/Buerokommunikation/Telefonanlagen/Octop…')
 
Line 80: Line 80:
 
== Links ==
 
== Links ==
  
* [http://www.7-zip.org/faq.html 7-Zip FAQ]  briefly discusses silent install
+
* [http://geschaeftskunden.telekom.de/tsi/de/425766/Home/Produkte-und-Loesungen/Buerokommunikation/Telefonanlagen/Octopus-Netphone-/1-octopus-netphone Netphone Download page]
* [http://appdeploy.com/packages/detail.asp?id=506 7-Zip on appdeploy.com]
+
* [http://www.swyx-forum.com/community/Forums/tabid/54/Default.aspx Forum] (This forum is for swyxphone, the original name of the application
* [http://nsis.sourceforge.net/Docs/Chapter3.html#3.2 Generic NSIS Installer Command Line Usage]
+
 
+
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]
[[Category:NSIS]]
 

Revision as of 13:50, 9 February 2010

A IP-telephony client for the Netphone application solution: geschaeftskunden.telekom.de (German)

This is the solution for the german client software.

MSI installer package.xml for Netphone Client x86

<package
	id="netphoneclient"
	name="Octopus Netphone Client 32-Bit"
	revision="700"
	reboot="false"
	priority="5">
 
	<check type="uninstall" condition="exists" path="Netphone Client" />
	</check>
 
	<install cmd='msiexec /qn /i %SOFTWARE%\Company\Netphone\NetPhoneClientGerman32.msi' />
 
	<upgrade cmd='msiexec /qn /i %SOFTWARE%\Company\Netphone\NetPhoneClientGerman32.msi' />
 
	<remove cmd='msiexec /qn /x {3FB43B61-E12A-4074-8BAB-470A40FACD02}' />
</package>

MSI installer package.xml for Netphone Client x86 or x64

<package
	id="netphoneclient"
	name="Octopus Netphone Client 32-Bit"
	revision="700"
	reboot="false"
	priority="5">
 
    <check type="logical" condition="or">
        <check
            type="registry"
            condition="equals"
            path="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\PROCESSOR_ARCHITECTURE"
            value="AMD64"
            />

	<check type="uninstall" condition="exists" path="Netphone Client" />
	</check>
 
	<install cmd='msiexec /qn /i %SOFTWARE%\Company\Netphone\NetPhoneClientGerman32.msi' />
 
	<upgrade cmd='msiexec /qn /i %SOFTWARE%\Company\Netphone\NetPhoneClientGerman32.msi' />
 
	<remove cmd='msiexec /qn /x {3FB43B61-E12A-4074-8BAB-470A40FACD02}' />
</package>

<package
	id="netphoneclient64"
	name="Octopus Netphone Client 64-Bit"
	revision="700"
	reboot="false"
	priority="5">
 
    <check type="logical" condition="or">
        <check
            type="registry"
            condition="equals"
            path="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\PROCESSOR_ARCHITECTURE"
            value="x86"
            />

	<check type="uninstall" condition="exists" path="Netphone Client" />
	</check>

	<install cmd='msiexec /qn /i %SOFTWARE%\Company\Netphone\NetPhoneClientGerman64.msi' />
 
	<upgrade cmd='msiexec /qn /i %SOFTWARE%\Company\Netphone\NetPhoneClientGerman64.msi' />
 
	<remove cmd='msiexec /qn /x {3FB43B61-E12A-4074-8BAB-470A40FACD02}' />
</package>

Links