我的应用程序中有一个选项可以在启动时启动。这曾经可以正常工作,但是现在它不再像应该的那样工作。在启动系统后立即检查任务管理器时,我可以看到该应用程序被引导,挂起并被Windows杀死。
我使用以下代码设置“登录”密钥:
private void checkBox_startOnBoot_CheckedChanged(object sender, EventArgs e) //Update settings, set value of registery key
{
if (checkBox_startOnBoot.Checked)
{
using (RegistryKey key = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true))
{
key.SetValue(Application.ProductName, Application.ExecutablePath);
}
}
else
{
using (RegistryKey key = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true))
{
key.SetValue(Application.ProductName, false);
}
}
Settings.Default.Start_On_Boot = checkBox_startOnBoot.Checked;
Settings.Default.Save();
}
在Main()函数中没有看到任何可能导致故障的内容:
static void Main()
{
if (Settings.Default.Restarting)
{
Settings.Default.Restarted = true;
Settings.Default.Save();
}
using (oneInstanceMutex = new Mutex(false, "Global\\" + appGuid))
{
if (!oneInstanceMutex.WaitOne(0, false)) // If app already running, but is not restarting // && restartMutex.WaitOne(0, false)
{
if (!Settings.Default.Restarting)
{
AlreadyRunning();
return;
}
}
hpt = new HookProcThread();
hpt.Run();
SystemEvents.PowerModeChanged += OnPowerChange;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
mw = new MainWindow();
if (Settings.Default.Restarted)
{
mw.WindowState = (FormWindowState)Settings.Default.RestartingWindowMode;
}
Settings.Default.Restarting = false;
Settings.Default.Save();
Application.Run(mw);
}
}
因此,如果有人对如何防止应用程序在启动时被挂起或杀死感到陌生,那就太好了!