/// <summary>
/// 开机启动项
/// </summary>
/// <param name="Started">是否启动</param>
/// <param name="name">启动值的名称</param>
/// <param name="path">启动程序的路径</param>
/// <returns></returns>
public static bool RunWhenStart(bool Started, string name, string path)
{
RegistryKey HKLM = Registry.LocalMachine;
RegistryKey Run = HKLM.CreateSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run\\");
if (Started)
{
try
{
Run.SetValue(name, path);
HKLM.Close();
return true;
}
catch (Exception Err)
{
MessageBox.Show(Err.Message, @"MUS\", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
}
else
{
try
{
Run.DeleteValue(name);
HKLM.Close();
return true;
}
catch (Exception)
{
return false;
}
}
}