gameadict Posted June 4, 2009 Posted June 4, 2009 I found this tidbit on the MS site while trolling for other info. Thought it may be of use to others so I'm just sharing.It explains how to automatically pin items to your taskbar or startmenu via scripting and includes an example script for calculator. I haven't tried this during an unattended install to see if it works as I'm still trying to work out other issues I'm having, but for others, this may be useful.How to pin items to taskbar or start menu via scripting
SoultakerPT Posted August 28, 2009 Posted August 28, 2009 Hi there!Does anyone have any idea on how to do this for all users?On Vista, all I add to do was:1 - Configure the start menu with the pinned shortcuts that I wanted2- Export the key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPageAnd then I just need to run the registry file and restart the computer.Now this is not working anymore.Any ideias about it?Best Regards,Soultaker
SmokingRope Posted October 24, 2009 Posted October 24, 2009 (edited) I have played around with this for a while now, i figure someone else might be interested in the results:Create a new WSH Script (which is very similar to that from the link posted by op). (http://blogs.technet.com/deploymentguys/ar...via-script.aspx)My script (stored at C:\PinToTaskbar.vbs) looks as follows:Set objShell = CreateObject("Shell.Application")set filesystem = CreateObject("scripting.Filesystemobject")Set objFolder = objShell.Namespace(filesystem.GetParentFolderName(Wscript.Arguments(0)))Set objFolderItem = objFolder.ParseName(filesystem.GetFileName(WScript.Arguments(0)))Set colVerbs = objFolderItem.VerbsFor Each objVerb in colVerbs If Replace(objVerb.name, "&", "") = "Pin to Taskbar" Then objVerb.DoIt If Replace(objVerb.name, "&", "") = "Unpin from Taskbar" Then objVerb.DoItNextCreate ONE batch file (at C:\PinItemsToTaskbar.bat) which then executes the above WSH script using cscript.exe for each program you want to pin."C:\Windows\System32\cscript.exe" "C:\PinToTaskbar.vbs" "C:\Program Files\Microsoft Office\Office12\WINWORD.exe""C:\Windows\System32\cscript.exe" "C:\PinToTaskbar.vbs" "C:\Program Files\Microsoft Office\Office12\VISIO.exe""C:\Windows\System32\cscript.exe" "C:\PinToTaskbar.vbs" "C:\Program Files\Microsoft Office\Office12\EXCEL.exe"Create a registry script (at C:\PinOnce.reg) which will execute the above batch file at first logon for each user.Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce]"SetupTaskbarPins"="C:\\PinItemsToTaskbar.bat"Now load this registry file during your unattended installation within the auditUser pass before generalization (or however else you might try and do it)<?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="auditUser"> <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Order>500</Order> <Path>cmd /c "REGEDIT /s C:\PinOnce.reg"</Path> <Description>Load User Settings</Description> </RunSynchronousCommand> </RunSynchronous> </component> </settings></unattend>I have tried unsuccessfully, to execute the WSH script during the auditUser pass using a RunSynchronous command. I Have tried unsuccessfully to execute the WSH script using the OOBE FirstLogonCommand. I have tried setting the FirstLogonCommand parameter "RequiresUserInput" to both true and false. I then tried to bypass the "PinItemsToTaskbar.bat" file by placing all the pin commands into the registry RunOnce; however it appears that the WSH script cannot be run multiple times simultaneously, and this caused unpredictable things to happen. The above steps are only method i have successfully used to pin items to the taskbar. Edited October 24, 2009 by SmokingRope
maxXPsoft Posted October 26, 2009 Posted October 26, 2009 I have played around with this for a while now, i figure someone else might be interested in the results: but i kinda tried something a little different. For those don't know as long as the path don't have spaces you don't need quotes. So just to play I tried these 2 in the PinItemsToTaskbar.cmd using WScriptWScript.exe %systemdrive%\Install\PinToTaskbar.vbs %windir%\explorer.exeWScript.exe %systemdrive%\Install\PinToTaskbar.vbs %windir%\notepad.exeso will need to test using WScript in the Firstlogon
maxXPsoft Posted October 27, 2009 Posted October 27, 2009 put both the vbs and the cmd in same dir and do thisPinItemsToTaskbar.cmdcd /d %~dp0WScript.exe %~dp0PinToTaskbar.vbs %windir%\explorer.exeWScript.exe %~dp0PinToTaskbar.vbs %windir%\notepad.exe
Major Posted July 10, 2010 Posted July 10, 2010 (edited) @maxXPsoft, i have tried to execute the .cmd but without succeess, it does not pin any item.I have tried multiple .vbs scripts tp pin ad unpin tasks from taskbar, but no one works for me, something i don´t do well. can someone help me please?here are the scripts i have tried:http://blogs.technet.com/b/deploymentguys/archive/2009/04/08/pin-items-to-the-start-menu-or-windows-7-taskbar-via-script.aspxhttp://social.technet.microsoft.com/Forums/en-US/w7itproui/thread/7aef91e3-47c2-4d18-9156-383b374bca88 Edited July 10, 2010 by Major
Major Posted July 10, 2010 Posted July 10, 2010 The scripts i have tried to install, i did it in a windows already installed, i don´t know if this situation would affect the executing of the script without any change.
maxXPsoft Posted July 11, 2010 Posted July 11, 2010 The scripts i have tried to install, i did it in a windows already installed, i don´t know if this situation would affect the executing of the script without any change.I just done it on a running windows and it worked. Place the cmd file and the vbs script in same folderPinTaskbar.cmdcd /d %~dp0WScript.exe %~dp0PinToTaskbar.vbs %windir%\explorer.exeWScript.exe %~dp0PinToTaskbar.vbs %windir%\notepad.exeExitPinToTaskbar.vbsSet objShell = CreateObject("Shell.Application")set filesystem = CreateObject("scripting.Filesystemobject")Set objFolder = objShell.Namespace(filesystem.GetParentFolderName(Wscript.Arguments(0)))Set objFolderItem = objFolder.ParseName(filesystem.GetFileName(WScript.Arguments(0)))Set colVerbs = objFolderItem.VerbsFor Each objVerb in colVerbs If Replace(objVerb.name, "&", "") = "Pin to Taskbar" Then objVerb.DoIt If Replace(objVerb.name, "&", "") = "Unpin from Taskbar" Then objVerb.DoItNext
Major Posted July 11, 2010 Posted July 11, 2010 I'll go crazy, i have done what you told me but without success, i don´t see no notepad neither no explorer on the taskbar.
maxXPsoft Posted July 11, 2010 Posted July 11, 2010 I'll go crazy, i have done what you told me but without success, i don´t see no notepad neither no explorer on the taskbar.I thought max was 3 but I keep running and more get added.I had given that up and went back to Quicklaunch myself
Major Posted July 11, 2010 Posted July 11, 2010 I think i am missing installing some libraries or some programs of windows to execute it because i have tried it in a running windows in vmware (only windows 7 is installed). i have seen that no file .vbs of adding or unpin item is executed, or i am wrong?Thanks
maxXPsoft Posted July 12, 2010 Posted July 12, 2010 I disable UAC at offlineServicing and 1 other thing I am on Premium cause I didn't like having to Hide all the language updates on Ultimate. May have had an issue with ultimate running those scripts. I know I disabled that Taskbar Pinned part in my app while i worked on it.
kevin34 Posted July 12, 2010 Posted July 12, 2010 Is it possible to just use WinRar, make an .sfx archive of the quicklaunch icons you want and have them auto-extract to C:\Users\[ProfileName]\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar? Or you could extract them to the default user profile. I used to do this in XP successfully. I am actually more interested in automatically removing the default quicklaunch items, unfortunately it seems that isn't possible. Any suggestions appreciated, have a good day everyone.Kevin
Major Posted July 12, 2010 Posted July 12, 2010 I have found the solution, the problem was i didn´t know how the script works. Then i see the script works as a right click on the item, i changed the words to spanish and it worked well.Thanks you very much @maxXPsoft for your help.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now