- 打开命令提示符:在开始菜单中搜索“cmd”,并在搜索结果中找到 CMD 应用程序。
- 使用 sc create 命令创建一个新的服务。
- 输入服务名称和服务的二进制路径,并选择适当的服务类型选项和启动类型。
- 使用 sc config 命令设置服务的启动类型和其他选项。
- 使用 sc delete 命令删除服务。
示例代码:
sc create NewService binPath= "c:\example\newservice.exe" DisplayName= "New Service" sc config NewService start= auto
标签:服务,Windows,create,NewService,命令,添加,sc,config From: https://blog.51cto.com/u_16271212/9640539