美文网首页
使用sc.exe命令行工具管理service

使用sc.exe命令行工具管理service

作者: CodingCode | 来源:发表于2023-01-07 03:47 被阅读0次
  1. query
sc query
  1. start/stop
sc start/stop <servicename>
  1. delete
sc delete <servicename>
  1. install
sc  create <servicename> binPath=<binpath> type=<type> start=<start>

例如:

sc create myservice binpath=c:\test\myservice\myservice.exe type=own start=auto

关于命令行的详细参数请查阅:https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/sc-create

所有service的信息都被记录注册表中HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

相关文章

网友评论

      本文标题:使用sc.exe命令行工具管理service

      本文链接:https://www.haomeiwen.com/subject/alcscdtx.html