摘要:
public void RunWhenStart(bool Started, string name, string path) { RegistryKey HKLM = Registry.LocalMachine; RegistryKey Run = HKLM.CreateSubKey(@"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Ru... 阅读全文
摘要:
记录下,免得忘了,完全为了恶搞。 this.WindowState = FormWindowState.Minimized; // 为了防闪动,让程序开始运行时就最小化this.ShowInTaskbar = false; //让程序不在任务栏里显示base.SetVisibleCore(false); //ALT+TAB看不见窗体 阅读全文
摘要:
1、OnStart()最常见的问题:在OnStart()的执行时间问题,如果超过30秒SCM会武断的认为服务无法启动,所以建议放到线程中执行。 2、调试最痛苦的问题:这个就直接贴上代码,在mian中写入如下代码 static void Main() { System.ServiceProcess.ServiceBase[] ServicesToRun; ServicesToRun = new Sy... 阅读全文