up vote 3 down vote favorite
1
share [g+] share [fb]

I have an application that gets started via a shortcut. This application than starts a Java GUI application with CreateProcess().

When the Java application gets pinned to the taskbar the javaw.exe gets pinned to the taskbar instead of the "expected" shortcut. Only the native executable which launches Java can be modified - the shortcut has to stay.

What has to be done so that the shortcut gets pinned?

Thanks, Stefan

link|improve this question
Have you gotten any further in resolving this issue? I am facing precisely the same problem. – Paul Lammertsma Dec 2 '09 at 13:02
Unfortunately: No - I wish I had If I find a solution I will post it here. – user153677 Dec 9 '09 at 12:14
feedback

2 Answers

Use something like winrun4j or create a .bat instead of using a shortcut.

link|improve this answer
Unfortunately this is no option. – user153677 Aug 10 '09 at 13:17
@kts: I can't get WinRun4J to work under Eclipse Galileo. The plugin website is rather uninformative, and I can't figure out if it's my version of Eclipse or if I'm doing something wrong. I installed it via "Help", "Install New Software...", then specifying the Update Site. After restarting, it appears in my installed software list, but WinRun4J doesn't appear under the Run Configurations list. Any ideas? – Paul Lammertsma Dec 2 '09 at 13:04
2  
@Paul I never had eclipse integration with winrun4j. I just downloaded the zip which contains an executable and ini and an icon. Rename the executable to what you want, rename the ini and edit, create a ico with the same name (eg foo.exe, foo.ini, foo.ico) and run (IIRC) foo.exe -WinRun4j::SetIcon to change the exe icon. – KitsuneYMG Dec 2 '09 at 13:24
@kts: Thanks, that clarifies things. I was hopeful it would integrate better than Launch4j, but I'm not sure if this is a fundamental improvement. I read there is a way of embedding the INI into the executable. Is this true? – Paul Lammertsma Dec 2 '09 at 17:20
@Paul: I don't know of an easy way to do it. Grab the source code and change the function that reads the ini file to return a hard-coded arguments list instead of reading it from the file. I guess you could modify the program to read the ini options out of the META-INI direcory (or some such) instead of a separate file. – KitsuneYMG Dec 2 '09 at 20:49
feedback

There is a Java library providing the new Windows 7 features for Java. It's called J7Goodies by Strix Code. Applications using it can be properly pinned to the Windows 7 taskbar. You can also create your own jump lists, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown