I tried creating a normal shortcut, and a javaw.exe shortcut, which creates the context menu option "Pin to Start", but that does nothing.
7 Answers
Create a shortcut. Move the shortcut into C:\ProgramData\Microsoft\Windows\Start Menu\Programs. Then click on the start menu and drag and drop your newly added icon wherever you like. Works on my copy of Windows 10 and avoids the CMD Window.
- 161
The first thing I did was make sure I had the latest Java SE and that the .JAR file association was with Java and not something else (like WinRAR)
I had to do something similar to get another application to pin to taskbar I use so I knew it had something to do with targets, and after researching a bit the same method for Windows 7 works here.
Create a shortcut for your .JAR, then right click and go to properties Edit the target to match this format:
%SystemRoot%\system32\cmd.exe /C "path to jar"
Source (except he recommends making a shortcut of cmd, I actually ran into issues for some reason)
Finally, pin your new shortcut to the taskbar by dragging it there. The icon will be the same as CMD but you can easily change it:
Hope this helps!
Create a shortcut of the jar. Add 'explorer' to the beginning of the target:
"C:\Users\joe\Documents\netbeans kalendar\dist\kalendar.jar"
becomes:
explorer "C:\Users\joe\Documents\netbeans kalendar\dist\kalendar.jar"
The shortcut executes without a cmd window appearing (it uses the explorer instead.) You can pin this to the taskbar, and change it's icon.
- 181
- 1
- 4
I know this is an old question, but I just found a better solution:
You can execute Java directly, passing it the JAR as an argument. Set your shortcut to the following path:
javaw -jar C:\Path\To\My\Program.jar
Additionally, specify the Start in path to C:\Path\To\My if your Java program uses relative paths to reference external files.
Using javaw here instead of java prevents an empty command window from being spawned.
- 141
Super clean and easy solution:
- Temporarily rename .jar file to .exe
- Create shortcut and pin to start
- Change .exe back to .jar and right click start menu item > more > open file location > right click > properties and change extension to .jar
- profit!
- 41
Make a Shortcut to Desktop:Rename /change icon now if you want. Move the jar file to C:\ProgramData\Microsoft\Windows\Start Menu\Programs. Once you move the jar file right click/properties and find Target: at the very beginning of the Line add C:\Windows\explorer.exe this will add the jar file to the list of Recently added Programs (Win10 thinks you "install" this Program) now you can added to the taskbar or the start menu shortcuts.
Based on the elegant solution from @Kameryn:
Here is how to do it in win11:
- Copy your .jar file to .exe
- Drag the .exe file to the process line
- Right click the link in the process line
- Right click on the file name above the unpin option
- Click on properties
- Change the icon (you get an error pop up: No icon. Click OK and select an icon)
- Click OK on all the pop-up windows, you will now have the link in the process line with the right icon
- Right click the link in the process line
- Right click on the file name above the unpin option
- Click on properties
- Change the target to end in .jar instead of .exe
- Click OK
- Delete your .exe copy
Note that you cannot combine changing icon and target in one go. If you don't care about the icon, skip step 6-10

