Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

27,845

Downloads of v 2.89:

911

Last Update:

03 Mar 2021

Package Maintainer(s):

Software Author(s):

  • Heiko Sommerfeldt

Tags:

phonerlite.install voip softphone

PhonerLite (Install)

This is not the latest version of PhonerLite (Install) available.

  • 1
  • 2
  • 3

2.89 | Updated: 03 Mar 2021

Downloads:

27,845

Downloads of v 2.89:

911

Maintainer(s):

Software Author(s):

  • Heiko Sommerfeldt

PhonerLite (Install) 2.89

This is not the latest version of PhonerLite (Install) available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install PhonerLite (Install), run the following command from the command line or from PowerShell:

>

To upgrade PhonerLite (Install), run the following command from the command line or from PowerShell:

>

To uninstall PhonerLite (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade phonerlite.install -y --source="'INTERNAL REPO URL'" --version="'2.89'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade phonerlite.install -y --source="'INTERNAL REPO URL'" --version="'2.89'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install phonerlite.install
  win_chocolatey:
    name: phonerlite.install
    version: '2.89'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'phonerlite.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.89'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller phonerlite.install
{
    Name     = "phonerlite.install"
    Version  = "2.89"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'phonerlite.install':
  ensure   => '2.89',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 03 Mar 2021.

Description

What is PhonerLite?

PhonerLite is a clearly arranged application for Windows. PhonerLite enables your PC to use it for Internet telephony (VoIP , Voice over IP ). Pre-conditions are a full-duplex sound card , a microphone and speakers (alternatively a headset), an Internet connection and an account from a provider supporting the protocol SIP . PhonerLite supports several SIP profiles, each configurable independently.

PhonerLite supports state of the art encryption methods like TLS, SRTP and ZRTP.

Why is PhonerLite the right name?

Phoner: There is an application called Phoner, with that PhonerLite shares common code and the file sipper.dll. All VoIP specific configurations are the same and can be exchanged between Phoner and PhonerLite without any transformations. If Phoner and PhonerLite are installed in the same directory, they use the same DLL and configuration data (sipper.ini). Basically PhonerLite uses only a different GUI than Phoner.
Lite: Like in Coke light the name affix suggests a light version of the original product. PhonerLite doesn't save any calories but resources - in this special case space and memory requirements.Usability is much easier than for Phoner. This advantage got some disadvantages: there is no answering machine and no support for TTS .

Is PhonerLite free of charge?

YES! PhonerLite is freeware. PhonerLite can be used, copied, and offered for download again without any fees in private and business environments. But PhonerLite is no open source. More information concerning license see here.

Features

Protocols

  • SIP
  • UDP , TCP , TLS
  • STUN

IP

  • IPv4
  • IPv6

Security/Encryption

  • TLS
  • SRTP
  • ZRTP

Codecs

  • G.711 A-Law
  • G.711 µ-Law
  • G.726 -16, -24, -32, -40
  • G.722
  • GSM
  • iLBC
  • Speex and Speex-WB
  • Opus

DTMF

  • RTP Payload

Languages

  • German
  • English
  • Spanish
  • Portuguese
  • French
  • Russian
  • Arabic
  • Czech
  • Polish
  • Turkish
  • Italian
  • Hebrew

See http://phonerlite.de for all information.

screenshot


legal\LICENSE.txt

From: http://phonerlite.de/license_en.htm

LICENSE

Except where otherwise noted, all of the documentation and software included in the PhonerLite package is copyrighted by Heiko Sommerfeldt.

Copyright (C) 2019 Heiko Sommerfeldt. All rights reserved.

This software is provided "as-is", without any express or implied warranty.
In no event shall the author be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter and distribute it, provided that the following conditions are met:

    All distributions of the whole package or parts of it must retain all occurrences of the above copyright notice and web site addresses.
    The origin of this software must not be misrepresented; you must not claim that you wrote the original software.
    Modified versions must be plainly marked as such, and must not be misrepresented as being the original software.
    All distributions of the whole package or parts of it must keep free of charge. Commercial distribution needs further inquiry to the author.

Copyright of used libraries:

    oSIP: (C) 2002 Aymeric MOIZARD, http://www.osip.org
    iLBC: (c) 2000-2003 The iLBCfreeware.org Project, http://www.ilbcfreeware.org
    Speex: © 2002-2003, Jean-Marc Valin/Xiph.Org Foundation, http://www.speex.org
    libSRTP: (c) 2001-2005 Cisco Systems, Inc., http://srtp.sourceforge.net/srtp.html
    OpenSSL: Copyright (c) 1998-2007 The OpenSSL Project, http://www.openssl.org/
legal\VERIFICATION.txt
VERIFICATION
 
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
Package can be verified like this:
 
1. Download:
 
   x32: https://www.phoner.de/PhonerLiteSetup_2.89.exe
   x64: https://www.phoner.de/PhonerLiteSetup_2.89.exe
  
2. You can use one of the following methods to obtain the SHA256 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'
 
   checksum type: sha256
   checksum32: 634BFB6D987AD152362527173BCA620DBCAF5B47663ADBF95B29D0513BA879AE
   checksum64: 634BFB6D987AD152362527173BCA620DBCAF5B47663ADBF95B29D0513BA879AE
 
File 'LICENSE.txt' is obtained from:
   http://phonerlite.de/license_en.htm
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName    
  file          = "$toolsDir\PhonerLiteSetup_2.89.exe"    
  silentArgs	= "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-"
}

Install-ChocolateyInstallPackage @packageArgs
tools\PhonerLiteSetup_2.89.exe
md5: 9B7A82FEF2BC023B0D9AFC73C7E1CD73 | sha1: CF4EC2318282D16E5847E6663120E2DC12EB1926 | sha256: 634BFB6D987AD152362527173BCA620DBCAF5B47663ADBF95B29D0513BA879AE | sha512: 6EBE3748E4E2078DE9F7A54586E24D2CFA67F302B613861C92F7B6F0A0C938FCD4BE9DADCE99581935EC2A8B5838D9F85330BCE6FADC3D2F8E93F16A8229391E

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
PhonerLite (Install) 3.23 460 Friday, November 10, 2023 Approved
PhonerLite (Install) 3.22 412 Thursday, October 19, 2023 Approved
PhonerLite (Install) 3.21 514 Wednesday, September 6, 2023 Approved
PhonerLite (Install) 3.20 430 Monday, August 7, 2023 Approved
PhonerLite (Install) 3.19 330 Wednesday, July 19, 2023 Approved
PhonerLite (Install) 3.18 491 Saturday, July 8, 2023 Approved
PhonerLite (Install) 3.17 783 Tuesday, April 25, 2023 Approved
PhonerLite (Install) 3.16 448 Tuesday, March 28, 2023 Approved
PhonerLite (Install) 3.15 472 Monday, February 27, 2023 Approved
PhonerLite (Install) 3.14 446 Monday, January 23, 2023 Approved
PhonerLite (Install) 3.13 358 Tuesday, January 3, 2023 Approved
PhonerLite (Install) 3.12 381 Thursday, December 8, 2022 Approved
PhonerLite (Install) 3.11 330 Friday, November 25, 2022 Approved
PhonerLite (Install) 3.10 577 Friday, October 14, 2022 Approved
PhonerLite (Install) 3.09 663 Wednesday, September 7, 2022 Approved
PhonerLite (Install) 3.08 519 Wednesday, August 17, 2022 Approved
PhonerLite (Install) 3.07 493 Friday, July 15, 2022 Approved
PhonerLite (Install) 3.06 263 Wednesday, July 6, 2022 Approved
PhonerLite (Install) 3.05 642 Monday, May 30, 2022 Approved
PhonerLite (Install) 3.04 364 Friday, May 13, 2022 Approved
PhonerLite (Install) 3.03 448 Monday, April 25, 2022 Approved
PhonerLite (Install) 3.02 486 Friday, April 8, 2022 Approved
PhonerLite (Install) 3.01 271 Saturday, April 2, 2022 Approved
PhonerLite (Install) 3.00 760 Friday, February 18, 2022 Approved
PhonerLite (Install) 2.99 683 Wednesday, January 19, 2022 Approved
PhonerLite (Install) 2.98 493 Tuesday, January 4, 2022 Approved
PhonerLite (Install) 2.97 1180 Tuesday, October 19, 2021 Approved
PhonerLite (Install) 2.96 435 Saturday, October 2, 2021 Approved
PhonerLite (Install) 2.95 501 Tuesday, September 14, 2021 Approved
PhonerLite (Install) 2.94 160 Monday, September 13, 2021 Approved
PhonerLite (Install) 2.93 1014 Friday, June 18, 2021 Approved
PhonerLite (Install) 2.92 473 Tuesday, June 1, 2021 Approved
PhonerLite (Install) 2.91 418 Wednesday, May 19, 2021 Approved
PhonerLite (Install) 2.90 173 Tuesday, May 18, 2021 Approved
PhonerLite (Install) 2.89 911 Wednesday, March 3, 2021 Approved
PhonerLite (Install) 2.88 426 Tuesday, February 16, 2021 Approved
PhonerLite (Install) 2.87 261 Thursday, February 11, 2021 Approved
PhonerLite (Install) 2.86 770 Thursday, December 10, 2020 Approved
PhonerLite (Install) 2.85 336 Tuesday, December 1, 2020 Approved
PhonerLite (Install) 2.84 794 Thursday, October 1, 2020 Approved
PhonerLite (Install) 2.83 408 Wednesday, September 16, 2020 Approved
PhonerLite (Install) 2.82 477 Friday, August 21, 2020 Approved
PhonerLite (Install) 2.81 536 Thursday, July 16, 2020 Approved
PhonerLite (Install) 2.80 434 Monday, June 22, 2020 Approved
PhonerLite (Install) 2.79 481 Wednesday, May 13, 2020 Approved
PhonerLite (Install) 2.77 557 Wednesday, April 1, 2020 Approved
PhonerLite (Install) 2.76 645 Thursday, March 12, 2020 Approved
PhonerLite (Install) 2.75 756 Wednesday, December 18, 2019 Approved
PhonerLite (Install) 2.74 579 Thursday, October 24, 2019 Approved
PhonerLite (Install) 2.73 638 Thursday, August 22, 2019 Approved
PhonerLite (Install) 2.72 776 Thursday, May 23, 2019 Approved
PhonerLite (Install) 2.71.20190504 303 Saturday, May 4, 2019 Approved
PhonerLite (Install) 2.71 198 Friday, April 12, 2019 Approved

This package has no dependencies.

Discussion for the PhonerLite (Install) Package

Ground Rules:

  • This discussion is only about PhonerLite (Install) and the PhonerLite (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or PhonerLite (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus