2014-03-27 117 views
0

我有一個使用installutil.exe進行安裝的Windows服務。我如何確保服務在安裝後立即自動啓動。這是服務ProjectInstaller類確保服務在安裝後立即自動啓動

using System.ComponentModel; 

namespace MedicalService_WindowsService 
{ 
    [RunInstaller(true)] 
    public partial class ProjectInstaller : System.Configuration.Install.Installer 
    { 
     public ProjectInstaller() 
     { 
      InitializeComponent(); 
     } 
    } 
} 

回答