SetAutoRun(Application.ExecutablePath, true); public void SetAutoRun(string fileName, bool isAutoRun) { RegistryKey HKLM = Registry.CurrentUser; RegistryKey reg = null; try { if (!System.IO.File.Exists(fileName)) throw new Exception("该文件不存在!"); String name = fileName.Substring(fileName.LastIndexOf(@"") + 1); reg = HKLM.OpenSubKey(@"SOFTWAREMicrosoftWindowsCurrentVersionRun", true); if (reg == null) reg = HKLM.CreateSubKey(@"SOFTWAREMicrosoftWindowsCurrentVersionRun"); if (isAutoRun) reg.SetValue(name, fileName); else reg.SetValue(name, false); } catch (Exception ex) { throw new Exception(ex.ToString()); } finally { if (reg != null) reg.Close(); } }