跳到主要内容

2.0、安装方法(win)

1、安装服务

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

//运行服务
sc start 服务名
//停止服务
sc stop 服务名

//删除服务
sc delete 服务名