Ben,
You have the option to write a script that deletes your shortcut and creates
a new one that you could deploy through a group policy. Below is a sample to
get you started. Save file with a .vbs extension.
'**SCRIPT START
Dim oWshNetwork
Dim oShell
Dim oFSO
Dim sMenuPath
Dim oShortCut
Set oWshNetwork=CreateObject("wscript.network")
Set oFSO=CreateObject("scripting.filesystemobject")
Set oShell=CreateObject("wscript.shell")
sMenuPath=oShell.ExpandEnvironmentStrings("%USERPROFILE%") & "\Start
Menu\Programs\"
oFSO.DeleteFile sMenuPath & "myShortcut.lnk" 'Put the name of your old
shortcut here
Set oShortcut=oShell.CreateShortcut(sMenuPath & "NewShortCut.lnk")
oShortCut.TargetPath="c:\Windows\Notepad.exe"
oShortCut.Save
'**SCRIPT END
Regards
Niclas Lindblom