try
{
RegistryKey hklm = Registry.LocalMachine;
RegistryKey run = hklm.CreateSubKey(@"SoftwareMicrosoftWindowsCurrentVersionRun");
if (checkBox1.Checked == true)
{
run.SetValue("thisApplication.exe", System.Windows.Forms.Application.ExecutablePath);
hklm.Close();
}
MessageBox.Show("設置開機成功!", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
}
catch
{ }
以上代碼是從別人的項目裡面扣出來,不過大家可以自己重載下,寫成一個通用的方法。