procedure CreateURLShortcut(const ShortcutFile, URL: string); var F: TextFile; // text file begin {$I+} // ensure file i/o raises exception on error // Open new file for writing (overwrites any existing file) AssignFile(F, ShortcutFile); Rewrite(F);…