Difference between revisions of "Netphone Client"
From WPKG | Open Source Software Deployment and Distribution
m |
|||
Line 81: | Line 81: | ||
* [http://geschaeftskunden.telekom.de/tsi/de/425766/Home/Produkte-und-Loesungen/Buerokommunikation/Telefonanlagen/Octopus-Netphone-/1-octopus-netphone Netphone Download page] | * [http://geschaeftskunden.telekom.de/tsi/de/425766/Home/Produkte-und-Loesungen/Buerokommunikation/Telefonanlagen/Octopus-Netphone-/1-octopus-netphone Netphone Download page] | ||
− | * [http://www.swyx-forum.com/community/Forums/tabid/54/Default.aspx Forum] (This forum is for swyxphone, the original name of the application | + | * [http://www.swyx-forum.com/community/Forums/tabid/54/Default.aspx Forum] (This forum is for swyxphone, the original name of the application) |
[[category:Silent Installers]] | [[category:Silent Installers]] |
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
- Netphone Download page
- Forum (This forum is for swyxphone, the original name of the application)