Example #1
0
        public static void CreateStartupShortcut()
        {
            var link = new ShellLink {
                Target = Assembly.GetExecutingAssembly().Location
            };

            link.Save(Path.Combine(
                          Environment.GetFolderPath(Environment.SpecialFolder.Startup),
                          Path.GetFileNameWithoutExtension(link.Target) + ".lnk"));
        }