8
วิธีการทำให้. NET Windows Service เริ่มต้นทันทีหลังการติดตั้ง?
นอกเหนือจาก service.StartType = ServiceStartMode โดยอัตโนมัติบริการของฉันไม่เริ่มทำงานหลังจากการติดตั้ง วิธีการแก้ แทรกรหัสนี้ใน ProjectInstaller ของฉัน protected override void OnAfterInstall(System.Collections.IDictionary savedState) { base.OnAfterInstall(savedState); using (var serviceController = new ServiceController(this.serviceInstaller1.ServiceName, Environment.MachineName)) serviceController.Start(); } ขอบคุณ ScottTx และ Francis B.