python - 如何让 Windows 知道我用 Python 编写的服务?

标签 python windows cross-platform

another question我昨天发帖,关于如何将 Python 脚本作为服务在 Windows 中运行,我得到了很好的建议。我想知道的是:Windows 如何知道可以在 native 工具(“管理工具”中的“服务”窗口)中管理的服务。 IE。 Windows 相当于在 Linux 下的/etc/init.d 中放置启动/停止脚本是什么?

最佳答案

不要直接修改注册表。使用 SC 命令行工具。即,SC CREATE

    DESCRIPTION:
        SC is a command line program used for communicating with the
        NT Service Controller and services.
    USAGE:
        sc  [command] [service name]  ...

        The option  has the form "\\ServerName"
        Further help on commands can be obtained by typing: "sc [command]"
        Commands:
          query-----------Queries the status for a service, or
                          enumerates the status for types of services.
          queryex---------Queries the extended status for a service, or
                          enumerates the status for types of services.
          start-----------Starts a service.
          pause-----------Sends a PAUSE control request to a service.
          interrogate-----Sends an INTERROGATE control request to a service.
          continue--------Sends a CONTINUE control request to a service.
          stop------------Sends a STOP request to a service.
          config----------Changes the configuration of a service (persistant).
          description-----Changes the description of a service.
          failure---------Changes the actions taken by a service upon failure.
          qc--------------Queries the configuration information for a service.
          qdescription----Queries the description for a service.
          qfailure--------Queries the actions taken by a service upon failure.
          delete----------Deletes a service (from the registry).
          create----------Creates a service. (adds it to the registry).
          control---------Sends a control to a service.
          sdshow----------Displays a service's security descriptor.
          sdset-----------Sets a service's security descriptor.
          GetDisplayName--Gets the DisplayName for a service.
          GetKeyName------Gets the ServiceKeyName for a service.
          EnumDepend------Enumerates Service Dependencies.

        The following commands don't require a service name:
        sc   
          boot------------(ok | bad) Indicates whether the last boot should
                          be saved as the last-known-good boot configuration
          Lock------------Locks the Service Database
          QueryLock-------Queries the LockStatus for the SCManager Database
    EXAMPLE:
        sc start MyService

关于python - 如何让 Windows 知道我用 Python 编写的服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34328/

相关文章:

java - 如何处理 J2ME 上缺少的最常见的类

python - 使用 python pbkdf2_hmac-sha256 + salt 计算测试哈希值不相同

windows - Android Studio 到 Git 可执行文件的路径

c++ - 为什么多线程会吃掉我的内存

fonts - 如何让单个字符在所有浏览器和操作系统中都居中?

sql-server - SQL Server 可以在具有 Unix 行结尾的文件中进行 bcp 吗?

python - 在 Twisted 客户端中生成 header

python - Pandas 切片/选择多个条件与或语句

python - 无法在 PyQt4 上显示 Qlabel

Python 无法在 r+ 模式下打开 11gb csv 但在 r 模式下打开