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:

20,842

Downloads of v 2024.10.0:

275

Last Update:

06 Oct 2024

Package Maintainer(s):

Software Author(s):

  • Jitsi Meet Electron community

Tags:

jitsi webinar webcam meeting electron

Jitsi Meet Electron

  • 1
  • 2
  • 3

2024.10.0 | Updated: 06 Oct 2024

Downloads:

20,842

Downloads of v 2024.10.0:

275

Maintainer(s):

Software Author(s):

  • Jitsi Meet Electron community

Jitsi Meet Electron 2024.10.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Jitsi Meet Electron community. The inclusion of Jitsi Meet Electron community trademark(s), if any, upon this webpage is solely to identify Jitsi Meet Electron community 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 Jitsi Meet Electron, run the following command from the command line or from PowerShell:

>

To upgrade Jitsi Meet Electron, run the following command from the command line or from PowerShell:

>

To uninstall Jitsi Meet Electron, 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 jitsi-meet-electron -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 jitsi-meet-electron -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 jitsi-meet-electron
  win_chocolatey:
    name: jitsi-meet-electron
    version: '2024.10.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'jitsi-meet-electron' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2024.10.0'
end

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


cChocoPackageInstaller jitsi-meet-electron
{
    Name     = "jitsi-meet-electron"
    Version  = "2024.10.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'jitsi-meet-electron':
  ensure   => '2024.10.0',
  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.

Package Approved

This package was approved as a trusted package on 07 Oct 2024.

Description

Features

  • Works with any Jitsi Meet deployment
  • Local settings
  • Builtin auto-updates
  • Remote control
  • Always-On-Top window

Package information

This will not use the installer, which installs jitsi-meet only for the current used.
Instead Chocolatey's means of installing a zip-package are used.
Thus the package will be installed for all users and requires administrative rights to update.

This is an automatic package that will update itself as soon as a new version is released.
It is therefore suggested to use choco-upgrade-all-at-startup or choco-upgrade-all-at, to make sure you always have the latest version.

screenshot


tools\app-32.7z
md5: 9EF6D2B32F8B8855985907939FA409C0 | sha1: 4FEA3F5CEFEFB887B21F508288E098F5E1AF1726 | sha256: C1C8A5C165D1335C2BCF9CED767841074961DE53755F23CD8D1601F51FD2054E | sha512: 5BDCB4C40EE0C9125410E1882194F6AF69B28C724CFAFE61E9070545CCF4D4C2FBAD3D68659B1A34906BB236C265BAD6E1E3EFD5F27041B54CE06B44E7A608A2
tools\app-64.7z
md5: B47D69002599DC7E4C9C668320207661 | sha1: 436057702661BCA7B2AFBFFEE83B8CCAB301147E | sha256: CF0730AA6CF2969448B10BA4DB269A94DF5491E5D8CC0E3A4B5D6F0EF78BC080 | sha512: D5CC03F0A41F84AFFC5BBDF0F4D29B691CEBF16F3441917F397AE9947B3703BBE567C950DE271DD7061107C8EA55D75838C4979DE3A0158FFBEF13CF87904069
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'


$toolsDir       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName    = "jitsi-meet-electron"
  file    = "$toolsdir\app-32.7z"
  file64  = "$toolsdir\app-64.7z"
  unzipLocation  = "$toolsDir"
  checksum       = 'C1C8A5C165D1335C2BCF9CED767841074961DE53755F23CD8D1601F51FD2054E'
  checksum64     = 'CF0730AA6CF2969448B10BA4DB269A94DF5491E5D8CC0E3A4B5D6F0EF78BC080'
  checksumType   = 'sha256'
  ChecksumType64 = 'sha256'
}


Write-Verbose "Unpacking"
Install-ChocolateyZipPackage @packageArgs

Get-ChildItem $toolsdir\*.7z | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" } }

Write-Verbose "Searching for exe"
$files = get-childitem "$toolsdir" -include "*.exe" -recurse


foreach ($file in $files) {
  #generate an ignore file
  if($file.Name -like "Jitsi*") {
    Write-Verbose "Crating Start Menu enty for $($file.BaseName)"
    $newlink ="$($env:ProgramData)\Microsoft\Windows\Start Menu\Programs\$($file.BaseName).lnk"
    Install-ChocolateyShortcut -shortcutFilePath $newlink  -targetPath "$file"
    Add-Content "$toolsdir\chocoUninstall.ps1" -Value "Remove-Item `"$($newlink)`" -Force -ea ignore"
  } else {
    Write-Verbose "Ignoring $($file.Name)"
    New-Item "$file.ignore" -type file -force | Out-Null
  }
}
tools\chocolateyUninstall.ps1

$toolsDir       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

. $toolsdir\chocoUninstall.ps1
tools\LICENSE
 
tools\LICENSE.electron.txt
Copyright (c) Electron contributors
Copyright (c) 2013-2020 GitHub Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
tools\LICENSES.chromium.html
 
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The installer have been downloaded from their official download link found at https://github.com/jitsi/jitsi-meet-electron/releases
You can find the package source at https://github.com/tunisiano187/Chocolatey-packages/tree/master/automatic/jitsi-meet-electron

To verify the package you need to
1. Download the Oneclick installer from the following
    URL: https://github.com/jitsi/jitsi-meet-electron/releases/download/v2024.10.0/jitsi-meet.exe
2. Unzip it running
    7z x jitsi-meet.exe
    The program is in the "$PLUGINSDIR" folder containing the app-32.7z and app-64.7z
3. You can use one of the following methods to obtain the checksum
  - Use powershell function 'Get-Filehash'
  - Use chocolatey utility 'checksum.exe'

  checksum type: sha256
  checksum32: C1C8A5C165D1335C2BCF9CED767841074961DE53755F23CD8D1601F51FD2054E
  checksum64: CF0730AA6CF2969448B10BA4DB269A94DF5491E5D8CC0E3A4B5D6F0EF78BC080

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
Jitsi Meet Electron 2024.6.0 387 Saturday, June 15, 2024 Approved
Jitsi Meet Electron 2024.5.0 224 Saturday, May 11, 2024 Approved
Jitsi Meet Electron 2024.3.0 317 Sunday, March 10, 2024 Approved
Jitsi Meet Electron 2024.1.0 326 Monday, January 15, 2024 Approved
Jitsi Meet Electron 2023.11.3 337 Saturday, November 25, 2023 Approved
Jitsi Meet Electron 2023.11.2 42 Friday, November 24, 2023 Approved
Jitsi Meet Electron 2023.11.0 239 Sunday, November 12, 2023 Approved
Jitsi Meet Electron 2023.10.0 1048 Tuesday, October 3, 2023 Approved
Jitsi Meet Electron 2023.9.1 323 Sunday, September 17, 2023 Approved
Jitsi Meet Electron 2023.9.0 188 Wednesday, September 6, 2023 Approved
Jitsi Meet Electron 2023.8.0 184 Sunday, August 27, 2023 Approved
Jitsi Meet Electron 2023.7.2 96 Friday, August 25, 2023 Approved
Jitsi Meet Electron 2022.8.1 1152 Saturday, August 13, 2022 Approved
Jitsi Meet Electron 2022.7.1 363 Friday, July 22, 2022 Approved
Jitsi Meet Electron 2022.6.1 579 Monday, June 27, 2022 Approved
Jitsi Meet Electron 2022.4.1 795 Friday, April 29, 2022 Approved
Jitsi Meet Electron 2022.3.1 811 Thursday, March 10, 2022 Approved
Jitsi Meet Electron 2022.2.1 452 Friday, February 18, 2022 Approved
Jitsi Meet Electron 2022.1.1 756 Wednesday, January 5, 2022 Approved
Jitsi Meet Electron 2021.12.2 570 Saturday, December 4, 2021 Approved
Jitsi Meet Electron 2021.12.1 222 Wednesday, December 1, 2021 Approved
Jitsi Meet Electron 2021.11.2 528 Saturday, November 6, 2021 Approved
Jitsi Meet Electron 2021.11.1 163 Friday, November 5, 2021 Approved
Jitsi Meet Electron 2.9.1 421 Wednesday, October 20, 2021 Approved
Jitsi Meet Electron 2.9.0 391 Wednesday, September 22, 2021 Approved
Jitsi Meet Electron 2.8.11 646 Sunday, August 29, 2021 Approved
Jitsi Meet Electron 2.8.10 422 Thursday, August 12, 2021 Approved
Jitsi Meet Electron 2.8.9 334 Tuesday, July 27, 2021 Approved
Jitsi Meet Electron 2.8.8 557 Saturday, July 3, 2021 Approved
Jitsi Meet Electron 2.8.7 303 Saturday, June 26, 2021 Approved
Jitsi Meet Electron 2.8.6 857 Friday, May 7, 2021 Approved
Jitsi Meet Electron 2.8.5 545 Wednesday, April 14, 2021 Approved
Jitsi Meet Electron 2.8.4 307 Wednesday, March 31, 2021 Approved
Jitsi Meet Electron 2.8.3 432 Thursday, March 25, 2021 Approved
Jitsi Meet Electron 2.7.1 406 Friday, March 12, 2021 Approved
Jitsi Meet Electron 2.7.0 205 Wednesday, March 10, 2021 Approved
Jitsi Meet Electron 2.6.1 274 Saturday, March 6, 2021 Approved
Jitsi Meet Electron 2.6.0 185 Thursday, March 4, 2021 Approved
Jitsi Meet Electron 2.5.1 316 Tuesday, February 23, 2021 Approved
Jitsi Meet Electron 2.4.2 1497 Thursday, October 29, 2020 Approved
Jitsi Meet Electron 2.4.1 406 Thursday, October 1, 2020 Approved
Jitsi Meet Electron 2.4.0 229 Friday, September 25, 2020 Approved
Jitsi Meet Electron 2.3.1 585 Friday, July 31, 2020 Approved
Jitsi Meet Electron 2.3.0 315 Thursday, July 2, 2020 Approved
Jitsi Meet Electron 2.2.0 181 Friday, June 5, 2020 Approved
Jitsi Meet Electron 2.1.1 204 Wednesday, May 27, 2020 Approved
Jitsi Meet Electron 2.1.0 192 Monday, May 25, 2020 Approved
Jitsi Meet Electron 2.0.2 207 Friday, May 15, 2020 Approved
Discussion for the Jitsi Meet Electron Package

Ground Rules:

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