Feedback

C# - Autostart-Eintrag hinzufügen (RegistryKey)

Veröffentlicht von am 11/19/2015
(0 Bewertungen)
Fügt einen neuen Autostart-Eintrag mit Name und Pfad in die Registry ein.
public static void addAutoStartRegistry(string appName, string appPath)
        {
            string run = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";
            string AppName = appName;
            string AppPath = appPath;
            if (Path.HasExtension(appPath))
            {
                RegistryKey startKey = Registry.LocalMachine.OpenSubKey(run, true);
                startKey.SetValue(AppName, AppPath);
            }
        }
Abgelegt unter olru, autostart, registry, subkey.

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!