Last Updated:
motherboard

FIX: Front audio jack not working on Gigabyte Motherboard

Matt
Matt Tips

Back in May I built a new computer which included a Gigabyte GA-Z77X-D3H motherboard. All was well till I tried getting the audio drivers working correctly. At that point in time, I discovered if I wanted to use headphones say out my front audio jack, I would be forced to turn my stereo off first, as sound would go out both audio jacks at the same time.

This was incredibly frustrating, since I was upgrading from a motherboard that I could choose between front and back audio, and I simply used an AutoHotkey script that would switch between the two using an assigned key on my keyboard.

At the time, I upgraded to the latest Via HD audio drivers, hoping that would have a fix for the situation. Unfortunately not.

Thankfully, I've just done a Google again on the situation and came across this thread. Turns out the VIA drivers released some point in August fixed the issue. So If you're reading this post and you haven't updated your drivers, you can download the latest VIA version from Gigabyte here.

Speaking of AutoHotkey scripts, below is mine, which is basically a script to assign which audio device is the default. So to activate it, I would need to press Ctrl + Alt + A, which in itself isn't bad, but I've also got a logitech keyboard with some extra keys which I've assigned to one of them the above command sequence. Works well :)

^!A::
Run, mmsys.cpl
WinWait,Sound
ControlSend,SysListView321,{Down 2}
ControlGet, isEnabled, Enabled,,&Set Default
if(!isEnabled)
{
ControlSend,SysListView321,{Down 1}
}
ControlClick,&Set Default
ControlClick,OK
WinWaitClose
SoundPlay, *-1
return

Comments