Example #1
0
 public static void CreateShortcut(string Name, string NameIcon)
 {
     try{
         CreateIcon(NameIcon);
         if (!File.Exists(Path + @"\" + Name + ".lnk"))
         {
             ShellLink.CreateShortcut(Path, Name, ExePath, NameIcon, new ShellLink.Icon()
             {
                 Path = Path + @"\Image\" + NameIcon + ".ico", Index = 0
             });
         }
     } catch { }
 }