Here is a simple Delphi function that saves an internet shortcut link in a specified folder. For additional Delphi code for the Windows operating system, see Useful Delphi Code for the Windows Operating System.
function CreateInternetShortcut(DestinationFolder, URL, URLShortcutName: String): Boolean; var Ini: TIniFile; //uses IniFiles unit LinkPath: String; begin CreateInternetShortcut := False;