Originally Posted By: Allen
If I had to guess it's probably the lauguage differences in OSs.

If you right click on an icon in Win7 you get two options in English, "Pin to Taskbar" and "Pin to Start Menu". Your language is probably different. You might try changing the action lines in the UDF to match what you have.

 Code:
  if instr(@producttype,"Windows 7") and ($action="" or $action="Taskbar")
    $action="Pin to Taskbar"
    $location="\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\" + $shortcut
  else
    $action="Pin to Start Menu"
    $location="\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu\" + $shortcut
  endif



very good! thanx Allen. U help me a lot!