Skip to content

windows开机自启指定程序的服务,不需要用户登录。

License

Notifications You must be signed in to change notification settings

sunhui2013/ztAutoService

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ztAutoService

项目介绍

  • windows开机自启指定程序的服务,不需要用户登录。
  • 本项目以vs2012建立,可自行升级

配置文件说明

  • 在exe文件目录放置一个名为config.ini的配置文件,内容按如下格式
  • [common]
  • number = 2
  • ;需要管理的进程数量,各个进程的配置分别是从file1到fileN
  • [file1]
  • path = D:/a.exe
  • ;可执行程序、脚本等文件路径或命令
  • cmd = -a -b -c -d
  • ;进程启动参数
  • protect = 1;
  • ;是否启用进程守护,0表示启动后不守护,其他值守护进程
  • rshour = 5
  • ;进程每天定时重启的时间,为小时,有效值0~23
  • rsdur = 8
  • ;进程运行达到多少小时就重启一次,>0时有效
  • ;rshour和rsdur都无效时不会定时重启。若都有效,两者都会生效
  • [file2]
  • path = D:/b.exe
  • cmd = -a -b -c -d
  • rsdur = 100

安装教程

  • 需要使用管理员权限的控制台进行系统服务的安装与卸载
  1. as -i 安装系统服务并启动
  2. as -u 卸载系统服务
  3. as -s 以用户进程方式执行程序,作为进程管理工具使用
  4. as -c 查看该服务的输出信息【未实现】

About

windows开机自启指定程序的服务,不需要用户登录。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.9%
  • C 1.1%