Downloads:
627,925
Downloads of v 6.19.28801:
40,836
Last Update:
17 Oct 2024
Package Maintainer(s):
Software Author(s):
- Jabra
Tags:
jabra call- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Jabra Direct
- 1
- 2
- 3
6.19.28801 | Updated: 17 Oct 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
627,925
Downloads of v 6.19.28801:
40,836
Maintainer(s):
Software Author(s):
- Jabra
Jabra Direct 6.19.28801
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Jabra. The inclusion of Jabra trademark(s), if any, upon this webpage is solely to identify Jabra goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Jabra Direct, run the following command from the command line or from PowerShell:
To upgrade Jabra Direct, run the following command from the command line or from PowerShell:
To uninstall Jabra Direct, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download jabra-direct --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade jabra-direct -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 jabra-direct -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 jabra-direct
win_chocolatey:
name: jabra-direct
version: '6.19.28801'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'jabra-direct' do
action :install
source 'INTERNAL REPO URL'
version '6.19.28801'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jabra-direct
{
Name = "jabra-direct"
Version = "6.19.28801"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jabra-direct':
ensure => '6.19.28801',
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.
This package was approved as a trusted package on 17 Oct 2024.
Jabra Direct is free PC software enabling Jabra USB devices to have Remote Call Control over most softphones. It also brings you features to personalize your Jabra device, to improve your device with firmware upgrades and offers a Dashboard with status to ensure everything is ready for the next call.
Package Parameters
/CleanStartmenu
Removes frequently used Jabra Direct shortcuts from the Startmenu.
# jabra-direct uninstall
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
Import-Module -Name "$($toolsDir)\helpers.ps1"
Remove-FileItem `
-Path "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Jabra Direct.lnk"
function Test-RegistryValue {
param (
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Path,
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Value
)
try {
Get-ItemProperty -Path $Path | Select-Object -ExpandProperty $Value -ErrorAction Stop | Out-Null
return $true
}
catch {
return $false
}
}
function Remove-FileItem {
param (
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Path
)
try {
Remove-Item `
-Path $Path `
-Recurse
Write-Output `
-InputObject "Remove $($Path)"
}
catch {
Write-Output `
-InputObject "Failed remove $($Path)"
}
}
function Update-RegistryValue {
param (
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Path,
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Name,
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Value,
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Type,
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Message
)
try {
Set-ItemProperty `
-Path $Path `
-Name $Name `
-Value $Value
Write-Output `
-InputObject $Message
}
catch {
New-ItemProperty `
-Path $Path `
-Name $Name`
-PropertyType $Type `
-Value $Value
Write-Output `
-InputObject $Message
}
}
function Remove-DesktopIcons {
param (
[parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]$Name,
[parameter(Mandatory = $false)]$Desktop
)
if(!$Desktop) {
$Desktop = 'All'
}
if ($Desktop -eq 'All') {
foreach ($User in Get-ChildItem -Path "C:\Users") {
Remove-FileItem -Path "C:\users\$($User)\desktop\$($Name).lnk"
}
Remove-FileItem -Path "C:\Users\default\desktop\$($Name).lnk"
Remove-FileItem -Path "C:\Users\Public\Desktop\$($Name).lnk"
} elseif ($Desktop -eq 'Public') {
Remove-FileItem -Path "C:\Users\Public\Desktop\$($Name).lnk"
} elseif ($Desktop -eq 'Default') {
Remove-FileItem -Path "C:\Users\Default\desktop\$($Name).lnk"
}
}
Log in or click on link to see number of positives.
- jabra-direct.6.19.28801.nupkg (0b8ffd469669) - ## / 66
- JabraDirectSetup.exe (8e5c1610db36) - ## / 67
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 |
---|---|---|---|---|
Jabra Direct 6.19.28801 | 40836 | Thursday, October 17, 2024 | Approved | |
Jabra Direct 6.18.26101 | 30951 | Monday, September 23, 2024 | Approved | |
Jabra Direct 6.17.21301 | 39720 | Thursday, August 8, 2024 | Approved | |
Jabra Direct 6.16.15901 | 36797 | Wednesday, July 3, 2024 | Approved | |
Jabra Direct 6.15.10901 | 52733 | Tuesday, April 23, 2024 | Approved | |
Jabra Direct 6.14.8801 | 14540 | Monday, April 15, 2024 | Approved | |
Jabra Direct 6.13.1801 | 50508 | Tuesday, January 30, 2024 | Approved | |
Jabra Direct 6.12.30302 | 51872 | Thursday, November 2, 2023 | Approved | |
Jabra Direct 6.11.28601 | 14725 | Thursday, October 19, 2023 | Approved | |
Jabra Direct 6.10.25001 | 18117 | Thursday, September 28, 2023 | Approved | |
Jabra Direct 6.9.16301 | 50652 | Tuesday, June 20, 2023 | Approved | |
Jabra Direct 6.8.13001 | 26870 | Tuesday, May 23, 2023 | Approved | |
Jabra Direct 6.7.06902 | 21073 | Wednesday, March 15, 2023 | Approved | |
Jabra Direct 6.6.03101 | 11295 | Wednesday, February 22, 2023 | Approved | |
Jabra Direct 6.5.31801 | 18051 | Sunday, November 27, 2022 | Approved | |
Jabra Direct 6.4.28501 | 10154 | Thursday, October 20, 2022 | Approved | |
Jabra Direct 6.3.22201 | 13905 | Wednesday, August 17, 2022 | Approved | |
Jabra Direct 6.2.18901 | 9211 | Thursday, July 14, 2022 | Approved | |
Jabra Direct 6.1.13901 | 11242 | Monday, May 30, 2022 | Approved | |
Jabra Direct 6.0.12901 | 2893 | Wednesday, May 25, 2022 | Approved | |
Jabra Direct 5.13.11201 | 8864 | Friday, April 29, 2022 | Approved | |
Jabra Direct 5.12.06601 | 10391 | Thursday, March 17, 2022 | Approved | |
Jabra Direct 5.11.01302 | 9509 | Wednesday, January 19, 2022 | Approved | |
Jabra Direct 5.10.2 | 5997 | Tuesday, December 14, 2021 | Approved | |
Jabra Direct 5.9.55495 | 7981 | Wednesday, October 20, 2021 | Approved | |
Jabra Direct 5.8.49513 | 4098 | Friday, September 17, 2021 | Approved | |
Jabra Direct 5.7.45144 | 4030 | Thursday, August 19, 2021 | Approved | |
Jabra Direct 5.6.43171 | 204 | Tuesday, July 27, 2021 | Approved | |
Jabra Direct 5.5.39795 | 5147 | Wednesday, June 30, 2021 | Approved | |
Jabra Direct 5.4.3519 | 4968 | Monday, May 17, 2021 | Approved | |
Jabra Direct 5.2.20825 | 4947 | Saturday, February 20, 2021 | Approved | |
Jabra Direct 5.1.19836 | 2200 | Wednesday, February 3, 2021 | Approved | |
Jabra Direct 4.14.15119 | 6314 | Thursday, November 19, 2020 | Approved | |
Jabra Direct 4.0.13615 | 2231 | Friday, October 30, 2020 | Approved | |
Jabra Direct 4.0.12443 | 883 | Tuesday, October 27, 2020 | Approved | |
Jabra Direct 4.0.8560 | 4803 | Tuesday, June 23, 2020 | Approved | |
Jabra Direct 4.0.5484 | 4980 | Tuesday, October 1, 2019 | Approved | |
Jabra Direct 4.0.5390 | 1232 | Wednesday, September 11, 2019 | Approved | |
Jabra Direct 4.0.5230 | 1455 | Friday, August 16, 2019 | Approved | |
Jabra Direct 4.0.4380 | 6785 | Wednesday, March 13, 2019 | Approved | |
Jabra Direct 4.0.3912 | 2331 | Friday, January 25, 2019 | Approved | |
Jabra Direct 4.0.3579 | 1324 | Wednesday, December 12, 2018 | Approved | |
Jabra Direct 4.0.3541 | 328 | Wednesday, October 31, 2018 | Approved | |
Jabra Direct 4.0.3518 | 316 | Tuesday, October 30, 2018 | Approved | |
Jabra Direct 3.12.1955 | 386 | Thursday, August 30, 2018 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Jabra Direct and the Jabra Direct 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 Jabra Direct, 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.