Windows 7 - Comment pin a .jar to la barre des tâches?
Windows 7 - Comment pin a .jar to la barre des tâches?
J'ai un .jar that I run frequently, and Je voudrais pin it to la barre des tâches. J'ai essayé pinning the .jar itself, and J'ai essayé pinning a .bat file that has the command to run the .jar, but it doesn't work either. Existe-t-il un moyen de accomplish this?
Re: Windows 7 - Comment pin a .jar to la barre des tâches?
Similar to MJH's answer, but instead of `cmd.exe`, you could specify the following path to the executable to avoid having the Invite de commandes showing up:
```
javaw.exe -jar "C:\path\to\your\executable.jar"
```
Si vous êtes the developer of the Java project, you might want to [see my answer on StackOverflow](https://stackoverflow.com/questions/1834599/pinning-a-java-application-to-the-windows-7-taskbar) as to getting it to play nicely with Windows 7.
```
javaw.exe -jar "C:\path\to\your\executable.jar"
```
Si vous êtes the developer of the Java project, you might want to [see my answer on StackOverflow](https://stackoverflow.com/questions/1834599/pinning-a-java-application-to-the-windows-7-taskbar) as to getting it to play nicely with Windows 7.