I wanted to share a simple workaround. Keep in mind that I am not a programmer and this is just a simple batch code I came up with.
Using Notepad I made a text file with the following lines and saved it as .bat.
taskkill /f /im FxSound.exe
cd C:\Program Files\FxSound LLC\FxSound
start /min FxSound.exe
Then I used the default Windows Task Scheduler to run the file on wake-up. Meaning everytime the PC wakes up from sleep or hibernation the FxSound.exe will be restarted. Note that the 2nd line in the .bat file can differ for you depending on where you installed FxSound.
Not the most elegant or ideal solution, but I hope this helps!