gpt4 book ai didi

windows - 从可执行文件创建 Windows 服务

转载 作者:可可西里 更新时间:2023-11-01 11:51:15 26 4
gpt4 key购买 nike

有没有什么快速的方法可以在给定一个可执行文件的情况下创建一个 Windows 服务,该服务在启动时启动它?

最佳答案

要从可执行文件创建 Windows 服务,您可以使用 sc.exe:

sc.exe create <new_service_name> binPath= "<path_to_the_service_executable>"

您必须在实际的 exe 路径两边加上引号,并且在 binPath= 之后有一个空格。

More information on the sc command can be found in Microsoft KB251192 .

请注意,它不适用于任何可执行文件:可执行文件必须是 Windows 服务 (i.e. implement ServiceMain)。将非服务可执行文件注册为服务时,您将在尝试启动服务时收到以下错误:

Error 1053: The service did not respond to the start or control request in a timely fashion.

有些工具可以从任意非服务可执行文件创建 Windows 服务,请参阅其他答案以获取此类工具的示例。

关于windows - 从可执行文件创建 Windows 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3582108/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com