December 18, 200619 yr Hi Everybody!Does anyone know how to pin a program to the Start-Menu UA?Thanks in advance!Marthax
December 18, 200619 yr This VB script code will do it for you.Set objShell = CreateObject("Shell.Application")Set objFolder = objShell.Namespace("C:\Windows\System32")Set objFolderItem = objFolder.ParseName("calc.exe")objFolderItem.InvokeVerb("P&in to Start Menu")Here's the link to the full explanation:MS Scripting Guys!
December 18, 200619 yr This VB script code will do it for you.Set objShell = CreateObject("Shell.Application")Set objFolder = objShell.Namespace("C:\Windows\System32")Set objFolderItem = objFolder.ParseName("calc.exe")objFolderItem.InvokeVerb("P&in to Start Menu")Here's the link to the full explanation:MS Scripting Guys!Nice, thanks, any ideas on how to rename them using vbs?
December 21, 200619 yr Author Unfortunately, the VB won't work for me as I've disabled VB support in XP.That registry method worked great though. Thanks for the help guys! Edited December 21, 200619 yr by Marthax
Create an account or sign in to comment