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:

244,832

Downloads of v 18.8.0.4:

71,538

Last Update:

11 Nov 2022

Package Maintainer(s):

Software Author(s):

  • Viber Media Inc.

Tags:

Viber

  • 1
  • 2
  • 3

18.8.0.4 | Updated: 11 Nov 2022

Downloads:

244,832

Downloads of v 18.8.0.4:

71,538

Maintainer(s):

Software Author(s):

  • Viber Media Inc.

Viber 18.8.0.4

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Viber Media Inc. The inclusion of Viber Media Inc. trademark(s), if any, upon this webpage is solely to identify Viber Media Inc. goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Viber, run the following command from the command line or from PowerShell:

>

To upgrade Viber, run the following command from the command line or from PowerShell:

>

To uninstall Viber, 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 viber -y --source="'INTERNAL REPO URL'" [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 viber -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install viber
  win_chocolatey:
    name: viber
    version: '18.8.0.4'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'viber' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '18.8.0.4'
end

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


cChocoPackageInstaller viber
{
    Name     = "viber"
    Version  = "18.8.0.4"
    Source   = "INTERNAL REPO URL"
}

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


package { 'viber':
  ensure   => '18.8.0.4',
  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

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 11 Nov 2022.

Description

Viber is a mobile application that lets you make free phone calls and send text messages to anyone who also has the application installed. You can call or text any Viber user, anywhere in the world, for free.

Viber integrates seamlessly with your existing address book, has great sound quality and once activated, does not require a PIN, username or any additional "in application" purchase.

Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.


tools\chocolateyInstall.ahk
#NoEnv
SetTitleMatchMode, 1  ;begins
DetectHiddenText, off
DetectHiddenWindows, off
 
winTitle = Viber ahk_class Qt5QWindowIcon
 
WinWait, %winTitle%, , 120
WinClose, %winTitle%
 
ExitApp
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';

$toolsDir     = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url          = 'https://download.cdn.viber.com/desktop/windows/ViberSetup.exe'
$checksum     = '37E0FC1FE547DEFCEEB428A5917A9B4B2E42206A403E4F445C69F7692C2BC19C'
$checksumType = 'sha256'
$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  fileType       = 'exe'
  url            = $url
  checksum       = $checksum
  checksumType   = $checksumType
  softwareName   = "Viber*"
  silentArgs     = '/install /quiet /norestart'
  validExitCodes = @(0)
  destination   = $toolsDir
}

# silent install requires AutoHotKey
$ahkFile = Join-Path $toolsDir 'chocolateyInstall.ahk'
$ahkEXE = Get-ChildItem "$env:ChocolateyInstall\lib\autohotkey.portable" -Recurse -filter autohotkey.exe
$ahkProc = Start-Process -FilePath $ahkEXE.FullName -ArgumentList "$ahkFile" -PassThru
Write-Debug "AutoHotKey start time:`t$($ahkProc.StartTime.ToShortTimeString())"
Write-Debug "Process ID:`t$($ahkProc.Id)"

Install-ChocolateyPackage @packageArgs

if (Get-Process -id $ahkProc.Id -ErrorAction SilentlyContinue) {Stop-Process -id $ahkProc.Id}

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
Viber 25.8.0 7 Wednesday, July 23, 2025
Waiting for Maintainer
Viber 25.7.1 10 Thursday, July 10, 2025
Waiting for Maintainer
Viber 25.7.0 6 Wednesday, July 9, 2025
Waiting for Maintainer
Viber 18.8.0.0 1257 Wednesday, November 2, 2022 Exempted
Viber 18.5.0.10 4464 Tuesday, September 27, 2022 Approved
Viber 18.4.0.6 2472 Wednesday, September 7, 2022 Approved
Viber 18.3.0.1 3630 Thursday, August 25, 2022 Approved
Viber 18.2.0.1 3027 Wednesday, August 10, 2022 Approved
Viber 18.1.0.0 3171 Tuesday, July 26, 2022 Approved
Viber 18.0.0.0 2755 Tuesday, July 12, 2022 Approved
Viber 17.9.0.0 3552 Wednesday, June 29, 2022 Approved
Viber 17.8.1.2 1938 Wednesday, June 22, 2022 Approved
Viber 17.8.1.0 1478 Friday, June 17, 2022 Approved
Viber 17.8.0.0 1014 Tuesday, June 14, 2022 Approved
Viber 17.7.0.0 3766 Tuesday, May 31, 2022 Approved
Viber 17.6.0.15 2810 Thursday, May 19, 2022 Approved
Viber 17.6.0.2 1018 Monday, May 16, 2022 Approved
Viber 17.5.1.11 3315 Saturday, April 30, 2022 Approved
Viber 17.5.1.0 666 Thursday, April 28, 2022 Approved
Viber 17.4.0.482 2069 Wednesday, April 20, 2022 Approved
Viber 17.4.0.472 508 Tuesday, April 19, 2022 Approved
Viber 17.4.0.10 1584 Wednesday, April 13, 2022 Approved
Viber 17.4.0.3 741 Monday, April 11, 2022 Approved
Viber 17.3.0.7 2986 Wednesday, March 30, 2022 Approved
Viber 17.2.0.6 3052 Wednesday, March 16, 2022 Approved
Viber 17.1.0.2 2575 Wednesday, March 2, 2022 Approved
Viber 17.0.0.0 2849 Tuesday, February 15, 2022 Approved
Viber 16.9.0.0 2885 Thursday, February 3, 2022 Approved
Viber 16.8.1.0 1594 Wednesday, January 26, 2022 Approved
Viber 16.8.0.10 629 Monday, January 24, 2022 Approved
Viber 16.7.0.4 4860 Thursday, December 16, 2021 Approved
Viber 16.6.0.0 3051 Tuesday, November 30, 2021 Approved
Viber 16.5.0.0 3014 Tuesday, November 16, 2021 Approved
Viber 16.4.6.1 1276 Thursday, November 11, 2021 Approved
Viber 16.4.5.3 1367 Friday, November 5, 2021 Approved
Viber 16.4.0.7 1494 Wednesday, October 27, 2021 Approved
Viber 16.4.0.2 552 Monday, October 25, 2021 Approved
Viber 16.3.0.5 2439 Wednesday, October 6, 2021 Approved
Viber 16.1.0.0 3044 Tuesday, September 14, 2021 Approved
Viber 16.0.0.10 1883 Friday, September 3, 2021 Approved
Viber 15.9.0.1 2280 Monday, August 16, 2021 Approved
Viber 15.8.0.1 2125 Wednesday, July 28, 2021 Approved
Viber 15.7.0.24 1604 Thursday, July 15, 2021 Approved
Viber 15.6.0.3 1691 Thursday, July 1, 2021 Approved
Viber 15.5.0.0 1580 Tuesday, June 15, 2021 Approved
Viber 15.4.1.1 2179 Tuesday, June 1, 2021 Approved
Viber 15.4.0.6 850 Thursday, May 27, 2021 Approved
Viber 15.3.0.5 1936 Friday, May 14, 2021 Approved
Viber 15.2.0.0 3701 Tuesday, April 27, 2021 Approved
Viber 15.1.0.5 5294 Wednesday, April 14, 2021 Approved
Viber 15.0.0.0 2031 Monday, March 29, 2021 Approved
Viber 14.9.1.0 2029 Thursday, March 18, 2021 Approved
Viber 14.9.0.3 702 Monday, March 15, 2021 Approved
Viber 14.8.0.3 2304 Thursday, February 25, 2021 Approved
Viber 14.7.0.3 1914 Thursday, February 11, 2021 Approved
Viber 14.6.0.0 2170 Wednesday, January 27, 2021 Approved
Viber 14.4.2.0 1356 Thursday, January 14, 2021 Approved
Viber 14.4.1.12 2163 Sunday, December 20, 2020 Approved
Viber 14.4.0.30 847 Sunday, December 13, 2020 Approved
Viber 14.3.0.52 1026 Thursday, December 3, 2020 Approved
Viber 14.2.0.38 1193 Tuesday, November 17, 2020 Approved
Viber 14.2.0.35 503 Sunday, November 15, 2020 Approved
Viber 14.1.1.13 1279 Tuesday, November 3, 2020 Approved
Viber 14.1.0.31 689 Wednesday, October 28, 2020 Approved
Viber 14.0.0.51 819 Monday, October 19, 2020 Approved
Viber 13.9.1.10 1272 Friday, October 2, 2020 Approved
Viber 13.9.0.18 422 Wednesday, September 30, 2020 Approved
Viber 13.8.0.25 754 Wednesday, September 16, 2020 Approved
Viber 13.7.0.40 718 Friday, September 4, 2020 Approved
Viber 13.6.0.58 931 Monday, August 17, 2020 Approved
Viber 13.5.0.64 961 Monday, July 27, 2020 Approved
Viber 13.3.1.21 966 Tuesday, July 7, 2020 Approved
Viber 13.3.0.43 623 Sunday, June 28, 2020 Approved
Viber 13.2.0.39 763 Sunday, June 14, 2020 Approved
Viber 13.1.0.56 792 Sunday, May 31, 2020 Approved
Viber 13.0.0.75 687 Monday, May 18, 2020 Approved
Viber 12.8.1.20 1089 Tuesday, April 21, 2020 Approved
Viber 12.8.0.75 484 Thursday, April 16, 2020 Approved
Viber 12.7.1.14 203 Sunday, April 5, 2020 Approved
Viber 12.7.0.54 983 Tuesday, March 31, 2020 Approved
Viber 12.6.0.41 732 Wednesday, March 18, 2020 Approved
Viber 12.5.0.50 718 Tuesday, March 3, 2020 Approved
Viber 12.4.0.22 749 Sunday, February 16, 2020 Approved
Viber 12.3.0.38 863 Thursday, January 30, 2020 Approved
Viber 12.2.0.54 878 Thursday, January 9, 2020 Approved
Viber 12.1.0.29 1434 Monday, December 16, 2019 Approved
Viber 12.1.0.23 395 Thursday, December 12, 2019 Approved
Viber 11.9.5.32 685 Thursday, November 28, 2019 Approved
Viber 11.9.1.3 649 Friday, November 15, 2019 Approved
Viber 11.9.0.18 371 Wednesday, November 13, 2019 Approved
Viber 11.8.0.60 698 Wednesday, October 30, 2019 Approved
Viber 11.7.0.64 573 Thursday, October 17, 2019 Approved
Viber 11.6.0.51 835 Thursday, September 26, 2019 Approved
Viber 11.5.0.67 669 Wednesday, September 11, 2019 Approved
Viber 11.4.0.64 825 Tuesday, August 27, 2019 Approved
Viber 11.3.1.28 563 Monday, August 19, 2019 Approved
Viber 11.3.0.24 590 Wednesday, August 7, 2019 Approved
Viber 11.2.0.37 452 Wednesday, July 31, 2019 Approved
Viber 11.1.0.38 573 Thursday, July 18, 2019 Approved
Viber 11.0.0.42 641 Tuesday, July 2, 2019 Approved
Viber 11.0.0.40 367 Sunday, June 30, 2019 Approved
Viber 10.9.0.55 619 Tuesday, June 18, 2019 Approved
Viber 10.9.0.52 310 Monday, June 17, 2019 Approved
Viber 10.8.0.50 599 Sunday, June 2, 2019 Approved
Viber 10.7.0.16 693 Tuesday, May 14, 2019 Approved
Viber 10.6.0.32 539 Monday, April 29, 2019 Approved
Viber 10.5.0.23 518 Sunday, April 14, 2019 Approved
Viber 10.5.0.20 418 Thursday, April 11, 2019 Approved
Viber 10.4.0.54 473 Thursday, March 28, 2019 Approved
Viber 10.3.0.36 466 Wednesday, March 13, 2019 Approved
Viber 10.2.0.38 506 Tuesday, February 26, 2019 Approved
Viber 10.1.0.44 485 Thursday, February 14, 2019 Approved
Viber 10.0.0.32 468 Sunday, February 3, 2019 Approved
Viber 10.0.0.30 418 Monday, January 28, 2019 Approved
Viber 9.9.6.53 390 Thursday, January 17, 2019 Approved
Viber 9.9.6.49 314 Tuesday, January 15, 2019 Approved
Viber 9.9.5.12 414 Monday, December 31, 2018 Approved
Viber 6.0.5.1518 5990 Thursday, June 2, 2016 Approved
Viber 3.1.1.60 1864 Tuesday, November 19, 2013 Approved
Viber 3.1.0.887 586 Friday, July 19, 2013 Approved
Discussion for the Viber Package

Ground Rules:

  • This discussion is only about Viber and the Viber 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 Viber, 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