It might help
Thank you tzr916 for reaching out.
I solved the issue with a macro script that opens and closes Playback option every time I open JRiver with my remote.
(This actually makes Windows recognize my AVM 70 every time)For that I use AutoHotKey (AHK) and made a script that has a key combination (ALT+9) that triggers the macro.
And with I, I mean I took help from the AHK forum as scripting isn't my strongest suit.https://www.autohotkey.com/I then programmed my remote with FLIRC to send ALT+9 when I press a designated button on my remote.
I also use Soundswitch to, if necessary, force Windows to switch sound output to my AVM 70 when i press (ALT+0).
I also programmed my remote with FLIRC to send ALT+0 when I press a designated button on my remote.
https://soundswitch.aaflalo.me/And to top everything of, I automated everything I programmed with Switchbot and Google Home to make the scripts running every time I turn on my home theater.
This is the script use with AHK
#SingleInstance, force
SetKeyDelay, 300
!9::
Run C:\Program Files\J River\Media Center 29\Media Center 29.exe
WinWait, ahk_exe Media Center 29.exe
WinActivate
Send, !p{UP}{ENTER}{TAB 4}{ENTER}
Return
Cheers,