Share via


Pinning apps on the Taskbar - for all users

Question

Monday, November 28, 2016 9:11 AM

Hi

I'm making an image of windows 10 and office 2016.

i want that all the users will have the same icons on the taskbar.

i copied all the shortcuts to this folder:

C:\Users\defult\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar

but when i log on with a new profile, i don't get the pinned icons...

why?

Thanks

Tamar

All replies (5)

Wednesday, December 7, 2016 6:06 AM âś…Answered

It doesn't work in Windows 10. See this link for alternate methods.

Pin to taskbar no longer working in Windows 10 | Microsoft Connect:
https://connect.microsoft.com/PowerShell/feedbackdetail/view/1609288/pin-to-taskbar-no-longer-working-in-windows-10

Ramesh Srinivasan  |  The Winhelponline Blog


Monday, November 28, 2016 11:04 AM

Hello

Can you try this 

Set objShell = CreateObject("Shell.Application") 
Set objFolder = objShell.Namespace("C:\) 
Set objApp = objFolder.ParseName("Notepad.lnk") 
For Each verb in objApp.Verbs() 
If verb.Name = "Pin to Tas&kbar" Then verb.DoIt 
Next
Set objShell = CreateObject("Shell.Application") 
Set objFolder = objShell.Namespace("C:\) 
Set objApp = objFolder.ParseName("Media Center.lnk") 
For Each verb in objApp.Verbs() 
If verb.Name = "Pin to Tas&kbar" Then verb.DoIt 
Next

Add as many apps as you want. Just make a shortcut first.
Then you will have to setup an "Active Setup" for each new user that logs on

Regards, Regin Ravi


Tuesday, November 29, 2016 6:25 AM

Thanks :-)

I will try and let you know what came up.

Regards, Tamar


Tuesday, November 29, 2016 7:57 AM

Hi Tamar,

I think this official documentation can give you a hint.

Configure Windows 10 taskbar

https://technet.microsoft.com/en-us/itpro/windows/manage/configure-windows-10-taskbar

Regards

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact [email protected].


Wednesday, December 7, 2016 5:39 AM

ITS WORKING ON WINDOWS 8.1 but couldnt make it word on windows 10... dont know why...

TNX