I give up, the forum ate half my damn post , I will add the vbs I use to add icons to this post and the above GP stuff is required AddLink "Get Remote Assistance", "What is my ComputerName for Remote Assistance", "\\dc\cdshare$\0RemoteAssist\WhoAmI.hta", 1, "\\dc\cdshare$\0RemoteAssist\", "", "%SystemRoot%\system32\msra.exe,1" AddLink "Offer Remote Assistance", "Offer Remote Assistance", "\\dc\cdshare$\0RemoteAssist\RemoteAssist.hta", 1, "\\dc\cdshare$\0RemoteAssist\", "", "%SystemRoot%\system32\msra.exe" Sub AddLink(LinkName, Description, Path, WindowStyle, WorkingDir, Arguments, IconPath) on error resume next Dim link Set link = WshShell.CreateShortcut(DesktopPath & "\" & LinkName & ".lnk") link.Description = Description link.TargetPath = Path link.WindowStyle = WindowStyle link.WorkingDirectory = WorkingDir if (Arguments <> "") then link.Arguments = Arguments if (IconPath <> "") then link.IconLocation = IconPath link.Save link = empty on error goto 0 End Sub