日期:2014-05-18 浏览次数:20968 次
public static bool SetAutoRun(string keyName,string filePath)
  {
  try
  {
  RegistryKey runKey=Registry.LocalMachine.OpenSubKey(@"\SOFTWARE\Microsoft\Windows\CurrentVersion\Run",true);
  runKey.SetValue(keyName,filePath);
  runKey.Close();
  }
  catch
  {
  return false;
  }
  return true;
  }