Right-click on the batch file shortcut (as well as batch file itself). Context menu doesn't contain "Pin to Start" command. Is there any way to pin batch file to Windows 10 start menu?
5 Answers
After you create the shortcut go to Properties and in the Target field add cmd /c "path", then you can pin it by right clicking on the shortcut and selecting Pin ...
- 855
- 2,898
- Create a directory in
%appdata%/Microsoft/Windows/Start Menu/Programs/(e.g. Custom); - Create a shortcut to a batch/executable/target in the directory;
2.1. (Optional) Wait for 5-20 seconds so the OS could handle the changes; - Open
Start Menu; - Search for the shortcut using Start Menu;
- Right click on the result and press
Pin to Start.
- 455
Update: I used the suggestion above and Windows 10 force modified my path to C:\Windows\System32\cmd.exe /c" C:\pathto\batch.bat". This works for me.
- 11
Create the shortcut file in a folder other than Programs. Then copy/move that shortcut into the Programs folder. You may need to provide admin credentials, but it'll work.
- 31
- 1
This answer provides additional details to the solutions by @User552853 and @Angel and a workaround when updates are needed.
The solution by @User552853 ends up copying the shortcut to %AppData%\Microsoft\Windows\Start Menu\Programs, meaning that the Start Menu link is different than the original shortcut created in the answer. This is important to keep in mind because updates to the original shortcut won't be reflected when the Start Menu shortcut is clicked. My workaround is:
- Delete the
Start Menushortcut - Right click on the original (but modified) shortcut and select
Pin to Start
Pinning to taskbar works in a similar but copies the shortcut to a different folder.
