How to pin a batch file to the Taskbar (Quicklaunch) [duplicate]
Brian Borg's answer at technet explains how to Pin a batch file to the Taskbar in Windows 7. I was able to do that in Windows 7 and it worked fine.
But I'm unable to make it work in Windows 8. The explanation doesn't make the syntax clear for adding the path and filename of the batch file. It's been several years since I did it in Windows 7 so I may not have done this part right, but I have tried every combination I can think of.
Here are a few examples I've tried:
"C:\Windows\System32\cmd.exe" "/C" C:\Users\[username]\winbats\dogbones.bat
"C:\Windows\System32\cmd.exe" "/C" "C:\Users\[username]\winbats\dogbones.bat"
"C:\Windows\System32\cmd.exe" /C C:\Users\[username]\winbats\dogbones.bat
C:\Windows\System32\cmd.exe /C C:\Users\[username]\winbats\dogbones.bat
C:\Windows\System32\cmd.exe /C "C:\Users\[username]\winbats\dogbones.bat"
They all open a command prompt, but none executed the batch file.
Does anyone know the correct syntax or another way to pin a batch file to the taskbar in Windows 8?
Solution 1:
PIN to home screen (Start):
- Navigate to
%AppData%\Microsoft\Windows\Start Menu\Programs
- Create a shortcut to your .bat script and rename it to how you want it to appear on start screen, i.e.
My Script
- Optional - change shortcut icon if you wish
- Go to the Start Screen and search for the name you gave to your shortcut in step 2
- Select
My Script
and click onPin to Start
orPin to taskbar
And this will allow both home screen (Start) and taskbar:
- Right click on your
Desktop
and chooseNew
>Shortcut
- In the Type the location of the item field enter:
cmd.exe /c "path\to\script.bat"
- Replace
path\to\script.bat
with actual path to your .bat file. - Click
Next
, name the shortcut and clickFinish
.
The pinning:
- To Pin the .bat file to the
Start
home screen, right click the new shortcut and choosePin to Start
. - To Pin the .bat file to the taskbar, simply drag the shortcut to your Windows taskbar, or right click the new shortcut and choose
Pin to Taskbar
.