通过 sc create 命令创建Windows服务

使用Windows自带的sc命令创建一个Windows服务:

sc create MyService binPath= "C:\Path\To\Your\Service.exe" displayname= "My Service Display Name" description= "Your service description." & sc config MyService start= auto & sc config MyService type= own & sc start MyService

每个命令的含义:

  1. sc create MyService binPath= "C:\Path\To\Your\Service.exe"
    • sc create 创建一个服务。
    • MyService 设置服务的名称为 “MyService”,你可以根据需要替换为你希望的服务名称。
    • binPath= "C:\Path\To\Your\Service.exe" 设置服务的可执行文件路径为 “C:\Path\To\Your\Service.exe”,这是服务启动所需的可执行文件路径,请替换为你实际的服务可执行文件路径。也可以设置为相对路径.\Your\Service.exe,该路径表示为当前工作目录路径。
  2. displayname= "My Service Display Name" 设置服务的显示名称。你可以将其替换为你希望显示的名称。
  3. description= "Your service description." 设置服务的描述说明。将其替换为你希望的服务描述。
  4. sc config MyService start= auto
    • sc config 配置服务的参数。
    • MyService 指定服务名称。
    • start= auto 将服务配置为在系统启动时自动启动。“auto” 表示自动启动,其他选项包括 “demand”(手动启动)等。
  5. sc config MyService type= own
    • sc config 同样是配置服务的参数。
    • MyService 指定服务名称。
    • type= own 将服务配置为使用自己的进程运行,而不是共享进程。这可以提高服务的独立性。
  6. sc start MyService
    • sc start 启动指定的服务。
    • MyService 指定要启动的服务名称。

更多相关参数详情可以参考官网:https://learn.microsoft.com/zh-cn/windows-server/administration/windows-commands/sc-create

你可能感兴趣的:(Windows,windows)