本文介绍了启动计算机时如何启动Windows应用程序.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

启动计算机时如何启动Windows应用程序?

在我的应用程序中,我想更新当前日期&时间在注册表中.

How do we start the windows application when we start the computer?

In my application I want to update the current date & time in registry.

推荐答案



public void SetStartup(bool start)
       {
           RegistryKey rk = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
           if (start)
               rk.SetValue(Path.GetFileName(Application.ExecutablePath).Replace(".exe", ""), Application.ExecutablePath.ToString());
           else
               rk.DeleteValue(Path.GetFileName(Application.ExecutablePath).Replace(".exe", ""), false);
       }
Try This function.And Add "using Microsoft.Win32"


这篇关于启动计算机时如何启动Windows应用程序.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 12:12