2.1、安装方法(win)
1、安装服务
说明
- 使用
linker.tray.win.exe
托盘程序托管和安装服务 - 或者使用命令
sc create
手动创建服务去运行linker.exe
//创建自启动服务
sc create 服务名 binPath= "linker.exe文件全路径" start= auto
//设置为延迟启动
sc config 服务名 start= delayed-auto
//运行服务
sc start 服务名
//停止服务
sc stop 服务名
//删除服务
sc delete 服务名