Example #1
0
 private void btnInstall_Click(object sender, EventArgs e)
 {
     if (WindowsServiceUtil.IsExist(serviceName))
     {
         WindowsServiceUtil.UninstallService(serviceFilePath);
     }
     WindowsServiceUtil.InstallService(serviceFilePath);
 }
Example #2
0
 private void btnUninstall_Click(object sender, EventArgs e)
 {
     if (!WindowsServiceUtil.IsExist(serviceName))
     {
         MessageBox.Show(serviceName + "服务不存在");
     }
     WindowsServiceUtil.ServiceStop(serviceName);
     WindowsServiceUtil.UninstallService(serviceFilePath);
 }