Hi,
You may want to create a new thread next time ;)
I
have poked around with this in the past and have not succeeded using
--minimize or batch file options. I did manage to make it work in Windows 10
using a simple powershell script. It's not elegant, but it works every
time for me. You will most likely have to enable PowerShell Execution
Policy for it to work.
Link on how-to.
Add this to a text file and rename it to name.ps1
start "C:\Program Files\LJ\Lightjams Music Player\Espera.exe"
$wshell = New-Object -ComObject wscript.shell;
$wshell.AppActivate('*Espera')
Sleep 5
$wshell.SendKeys('(%(" "(n)))')
You
must change the path to match your setup, and you can tweak the sleep
value. Basically it starts the Music Player, then uses SendKeys to send
ALT+Space then 'n' key, which is the keyboard shortcut to minimize a
program.
The last step is to create a .bat file that will execute the script with:
start "" powershell.exe "C:\Users\path to file\name.ps1"
and place the .bat file in your startup folder.
Hope this helps