Skip to Main Content
Patch My PC Feature and Application Request

A community where customers and the community can provide feedback to make a better product for everyone! For more details on how we prioritize request, please see:

10 VOTE
Status SUBMITTED
Categories Application Request
Created by Tobias
Created on Oct 20, 2021

Support for Jabra Xpress

Hello PMPC Team,


please support Jabra Xpress


thanks for your time / work :)


regards!

  • Attach files
  • Ryan Steele
    Reply
    |
    Jun 3, 2022

    Here's the PowerShell I've added as a post-install script for Jabra Direct to enroll the clients in Jabra Xpress. Just be sure to put your package token in the <packageToken> tag (which you can obtain from the installx64.cmd file in the Jabra Xpress package you download from the Jabra Xpress admin portal):

    $file = @"
    
    <?xml version="1.0"?>
    <root>
    <PackageToken>**YOUR_TOKEN_HERE**</PackageToken>
    <XpressUrl>https://backend-xpress.jabra.com</XpressUrl>
    </root>
    "@
    $jdPath = Join-Path $env:Programdata "Jabra Direct"
    If (-not (Test-Path $jdPath)) { New-Item -ItemType Directory -Path $jdPath }
    Set-Content -Path "$jdPath\jabradirect.xml" -Value $file
  • Claudio Mendes
    Reply
    |
    Nov 18, 2021

    +1

  • Ryan Steele
    Reply
    |
    Oct 21, 2021

    Fun fact: Jabra Xpress is just Jabra Direct packaged up in an MSI, with a step added in the installer to create the C:\Programdata\Jabra Direct\jabradirect.xml file. Just deploy Jabra Direct instead and add a post-install script to create the XML file.

  • +4