In the realm of efficient software deployment, Jabra Direct users can now seamlessly streamline their installations. The process often lacks the option to deactivate update notifications during installation. Our solution? A streamlined PowerShell script that ensures a smoother deployment experience.

Whether you’re utilizing SCCM or Intune, our script swiftly takes action. By targeting the Config.json file within %appdata%\Jabra Direct, the script makes critical modifications. Specifically, it toggles the DirectShowNotification value to $false, effectively disabling update notifications. Additionally, the script halts the Jabra-Direct process, preventing potential configuration file locks during updates.

Unlock a more efficient installation journey with our PowerShell solution, simplifying the deployment of Jabra Direct while empowering you to exercise greater control over update notifications.

PowerShell

JabraDirect-DisableUpdateNotifications.ps1

Stop-Process -ProcessName jabra-direct -force -ErrorAction SilentlyContinue

Write-Output “- Configure Jabra Direct”

$json = “$([Environment]::GetFolderPath(“ApplicationData”))\Jabra Direct\config.json”

If (Test-path(“$json”)) {

Write-Output “– Found the Config File, applying changes”

$a = Get-Content “$json” -Raw | ConvertFrom-Json

$a.DirectShowNotification.value = $false

$a.DirectShowNotification.locked = $false # Application overrides this value to False

$a | ConvertTo-Json -Depth 3 | Format-Json | Set-Content “$json” -Encoding UTF8

((Get-Content “$json”) -join “`n”) + “`n” | Set-Content -NoNewline “$json”

 

By Rayhan

My name is Rayhan and I'm an IT professional with over 10 years of experience in the field. I'm passionate about all things tech, and I love helping people solve their IT problems. In my free time, I enjoy tinkering with new gadgets and software, and I'm always on the lookout for the latest tech trends. I believe that technology has the power to make our lives easier and more enjoyable, and I'm excited to be a part of this ever-evolving field. Thank you for taking the time to visit my page.

Leave a Reply

Your email address will not be published. Required fields are marked *