C#中对注册表的写
/// <summary>
/// 开机启动项
/// </summary>
/// <param name="Started">是否启动</param>
/// <param name="name">启动值的名称</param>
/// <param name="path">启动程序的路径</param>
public static void RunWhenStart(bool Started, string name, string path)
{
RegistryKey HKLM = Registry.LocalMachine;
RegistryKey Run = HKLM.CreateSubKey(@"SOFTWARE/Microsoft/Windows/CurrentVersion/Run");
if (Started == true)
{
try
{
Run.SetValue(name, path);
HKLM.Close();
}
catch
{
}
}
else
{
try
{
Run.DeleteValue(name);
HKLM.Close();
}
catch
{
}
}
}
private string Path()
{
string s= System.Windows.Forms.Application.StartupPath.ToString();
return s + "AutoRun.exe";
}