public void RunOnStart(string Libele, string Fichier)
{
Microsoft.Win32.RegistryKey Key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
Key.SetValue(Libele, Fichier);
Key.Close();
Key = null;
}