static void Main()
{
WshShell shell = new WshShell();
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(
Environment.GetFolderPath(Environment.SpecialFolder.StartMenu) +
"\" + "Allen’s Application.lnk");
shortcut.TargetPath =
System.Reflection.Assembly.GetExecutingAssembly().Location;
shortcut.WorkingDirectory =
System.Environment.CurrentDirectory;
shortcut.WindowStyle = 1;
shortcut.Description = "Launch Allen’s Application";
shortcut.IconLocation = System.Environment.SystemDirectory + "\" +
"shell32.dll, 165";
shortcut.Save();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}