@webmaster: sorry for posting in german last time. I simply missed that this forum is in english.
Invoke a windows program from within the Linux Mint Menu using wine.
Tested with Linux Mint Mate and wine 1.7.x
If a windows program was installed with wine in Linux Mint, a starter is created automatically in the Mint Menu. Wine installs a link to the actual program in the Windows startmenue directory. But the starter does not work with Windows links because of a bug in the mint menu. If the starter is copied to the desktop it works perfectly.
I found a solution the starter works from within the Linux Mint menu.
Assume:
"myName" = users home directory
"Test-Directory" = Directory created during the installation in the Windows Start Menu. (There the link to the actual program ist stored)
"Testprogramm.LNK" = the link to th actual program. (Stored in "Test-Directory")
Exchange
Code: Select all
Exec=env WINEPREFIX="/home/myName/.wine" wine C:\\windows\\command\\start.exe /Unix /home/myName/.wine/dosdevices/c:/users/andreas/Start\ Menu/Programs/Test-Directory/Testprogram.LNK
with
Code: Select all
Exec=env WINEPREFIX="/home/myName/.wine"; cd "/home/myName/.wine/drive_c/users/myName/Start Menu/Programs/Test-Directory"; wine start Testprogram.LNK
Don't fail to notice the ";"s and "wine start"
Logout the login again. Starter should work now