Tu peux ajouter une clef au registre, pas besoin d'installateur & co ...
RegistryKey rkApp = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microso
ft\\Windows\\CurrentVersion\\Run",
true);
Ajout :
rkApp.SetValue("NomClef", Application.ExecutablePath.ToString());
Suppression :
rkApp.DeleteValue("NomClef", false);