Uygulamanızdan istediğiniz yere kısayol oluşturmak için referanslara COM sekmesinden Windows Script Host Object Model'i ekleyin. Kodlar aşağıda.
private void button1_Click(object sender, EventArgs e)
{
IWshRuntimeLibrary.WshShellClass Hede = new IWshRuntimeLibrary.WshShellClass();
IWshRuntimeLibrary.IWshShortcut Kisayol = (IWshRuntimeLibrary.IWshShortcut)Hede.CreateShortcut(@"C:\Kisayol.lnk");
Kisayol.TargetPath = Application.ExecutablePath;
Kisayol.Description = "Çalıştırsanaaaa...";
Kisayol.IconLocation = @"C:\Program Files\Microsoft Office\OFFICE12\REFBAR.ICO";
Kisayol.Save();
}