Jump to content
  • entries
    48
  • comments
    26
  • views
    2,021

ICT Tip #28 - Pinning Items to the Windows 7 Start Menu


This being a new blog series I figured I was meant to update on time and stick to my promises for at least another three weeks ;)

 

So, following on from last week's introduction and tip on searching the Windows 7 Start Menu, this week is about pinning shortcuts to the Start Menu for quick access: ICT Tip 028 - Pin to Start Menu.doc

 

It's quick, it's easy, it's worth showing people. As ever you are free to steal, borrow, adapt and re-use, without attribution, so long as you make no money off it.

Edited by sonofsanta

1 Comment


Recommended Comments

ThomL

Posted

It is worth mentioning that if you are using Roaming profiles this will not work very well, especially if you are redirecting app data, or deleting profiles when users log off of machines.

 

Users will suddenly lose anything they have pinned as it doesn't sit within the normal areas of the appdata that get redirected.

 

The way that i have overcome this is by using a logon/logoff script to backup the users pinned items and to restore them when they log on.

 

Logon Script

DEL /F /S /Q /A "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\*"

copy /y "\\nas01\%username%\TaskbarPinnedItems" "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar"

REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband /F

REG IMPORT \\nas01\%username%\TaskbarPinnedItems\Taskbar-Pinned-Items-Backup.reg

 

log off script

mkdir "\\nas01\%username%\TaskbarPinnedItems"

copy /y "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar" "\\nas01\%username%\TaskbarPinnedItems"

REG EXPORT HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband \\nas01\%username%\TaskbarPinnedItems\Taskbar-Pinned-Items-Backup.reg /y

 

 

Any one using this will have to update the script to work in their environment, if someone has a better solution please comment and let me know!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...