v5tech / notes

notes
https://ameizi.gitee.io/notes
MIT License
1.52k stars 378 forks source link

使用winsw将exe文件注册为windows系统服务 #180

Open v5tech opened 6 years ago

v5tech commented 6 years ago

https://github.com/kohsuke/winsw

IntelliJIDEALicenseServer_windows_amd64.exe注册为windows系统服务

下载winsw.exe文件,确保winsw.exeIntelliJIDEALicenseServer_windows_amd64.exe位于同一目录

创建winsw.xml文件,确保文件名和winsw.exe名称一致且位于同一目录,其文件内容为

winsw.xml

<!--
    Copyright (c) 2016 Oleg Nenashev and other contributors

    Permission is hereby granted, free of charge, to any person obtaining a copy of this 
    software and associated documentation files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use, copy, modify, merge, publish,
    distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all copies or 
    substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING 
    BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
    DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->

<!--
 This is an example of a minimal Windows Service Wrapper configuration, which includes only mandatiory options.

 This configuration file should be placed near the WinSW executable, the name should be the same.
 E.g. for myapp.exe the configuration file name should be myapp.xml

 You can find more information about the configuration options here: https://github.com/kohsuke/winsw/blob/master/doc/xmlConfigFile.md
 Full example: https://github.com/kohsuke/winsw/blob/sample-config-file/examples/allOptions.xml
-->
<configuration>

  <!-- ID of the service. It should be unique accross the Windows system-->
  <id>IntelliJIDEALicenseServer</id>
  <!-- Display name of the service -->
  <name>IntelliJIDEALicenseServer</name>
  <!-- Service description -->
  <description>IntelliJIDEALicenseServer</description>

  <!-- Path to the executable, which should be started -->
  <executable>D:\IntelliJIDEALicenseServer\IntelliJIDEALicenseServer_windows_amd64.exe</executable>
  <startmode>Automatic</startmode>

</configuration>

最后在命令行执行

winsw.exe install

注册服务

winsw.exe uninstall

卸载服务

winsw.exe help

查看帮助

winsw.zip