jar包配置成windows服务

下载WinSW
jar包配置成windows服务_第1张图片

1.将jar包(例: test.jar)和WinSW.NET4.exe放入同一文件夹,新建文件WinSW.NET4.xml

2.配置文件WinSW.NET4.xml


<service>
	<id>testid>
	<name>test-servicename>
	<description>test的描述信息description>
	<executable>javaexecutable>
	<arguments>-jar test.jararguments>
	<logmode>rotatelogmode>
service>

3.cmd进入到存放jar包和WinSW.NET4.exe的文件夹中,输入: WinSW.NET4.exe install
出现 -Installing the service with id 'test’表示服务已安装

4.使用管理员身份登入cmd,用命令"sc start test"启动;停止"sc stop test";删除:“sc delete test”

你可能感兴趣的:(jar)