使用 WinSW 将任何程序设为 Windows 服务
本文最后更新于 2022年6月9日 早上
下载
最新版本和预发布的 WinSW 二进制文件可在 GitHub Releases 上获得。
使用
将 WinSW 用作捆绑工具
- 从发行版中获取 WinSW.exe 或 WinSW.zip,然后根据您的喜好重命名.exe(例如 myapp.exe)。
- 编写 myapp.xml 。
- 将这两个文件并排放置,因为这就是 WinSW 发现其相关配置的方式。
- 运行 myapp.exe install 以安装服务。
- 运行 myapp.exe start 以启动服务。
配置
您编写定义服务的配置文件。
下面的示例是 Jenkins 项目中使用的原始示例:
1 |
|
配置文件的完整规范可在 此处 获得。
您可以在此处 找到更多示例。
命令
WinSW 由 XML 配置文件 管理。
您重命名的 WinSW.exe 二进制文件还接受以下命令:
命令 | 说明 |
---|---|
install | 安装服务。 |
uninstall | 卸载服务。 |
start | 启动服务。 |
stop | 停止服务。 |
restart | 停止然后启动服务。 |
status | 检查服务的状态。 |
refresh | 无需重新安装即可刷新服务属性。 |
customize | 自定义包装器可执行文件。 |
实验命令:
命令 | 说明 |
---|---|
dev-ps | 绘制与服务关联的进程树。 |
dev-kill | 如果服务停止响应,则终止服务。 |
dev-list | 列出由当前可执行文件管理的服务。 |
大多数命令需要管理员权限才能执行。WinSW 将在非提升会话中提示输入 UAC。
例子
Nacos
下载
最新版本的 Nacos 文件可在 GitHub Releases 上获得。
配置
编写 nacos-service.xml 配置执行 startup.cmd。
1 |
|
安装
- 将 WinSW.exe 重命名为 nacos-service.exe 和 nacos-service.xml 放到同一个目录。
- 在 CMD 中运行 nacos-service.exe install。
Redis
下载
最新版本的 Redis 文件可在 GitHub Releases 上获得。
配置
编写 Redis.xml 配置执行 redis-server.exe。
1 |
|
安装
- 将 WinSW.exe 重命名为 Redis.exe 和 Redis.xml 放到同一个目录。
- 在 CMD 中运行 Redis.exe install。
VirtualBox
下载
最新版本的 VirtualBox 文件可在 官网 上获得。
配置
编写 startup.bat 执行脚本, 命令为启动两个虚拟机。
1 |
|
编写 VirtualBox.xml 配置执行 startup.bat 文件。
1 |
|
安装
- 将 WinSW.exe 重命名为 VirtualBox.exe 和 VirtualBox.xml 放到同一个目录。
- 在 CMD 中运行 VirtualBox.exe install。
Sentinel
下载
最新版本的 Sentinel 文件可在 GitHub Releases 上获得。
配置
编写 startup.bat 执行脚本, 命令为启动 jar 包。
1 |
|
编写 sentinel-dashboard.xml 配置执行 startup.bat 文件。
1 |
|
安装
- 将 WinSW.exe 重命名为 sentinel-dashboard.exe 和 sentinel-dashboard.xml 放到同一个目录。
- 在 CMD 中运行 sentinel-dashboard.exe install。
参考
使用 WinSW 将任何程序设为 Windows 服务
http://www.loquy.cn/posts/10bdb19a.html