解决重启机器自动运行多个服务

例如在windows server 2012 r2 操作系统上,可按以下方式启动多个服务

写个批处理脚本 ,把你要运行的命令写进去,

批处理脚本书写:

@echo off

start cmd /k "cd/d D:\ && java -jar tran.jar > transit.log"

start cmd /k "cd/d D:\nginx-1.14.2\ && start nginx"

然后创建一个服务指向到这个脚本

sc create test binPath="D:\start.bat" start=auto

重新编写脚本后,需重建。

删除脚本:

sc delete test

cd/d  表示进入到d盘

等同于

> \> cd  d: 

> \> d:

你可能感兴趣的:(解决重启机器自动运行多个服务)