Python 编写Windows服务程序:将Python作为Windows服务启动

本文介绍了如何使用Python的pywin32包将Python程序作为Windows服务进行安装、配置和管理,包括安装服务、设置自动启动、启动、重启、停止以及卸载服务的命令行操作。
摘要由CSDN通过智能技术生成

Python程序作为Windows服务启动,需要安装pywin32包。下载路径:

http://sourceforge.net/projects/pywin32/files/pywin32/


 


#-*- coding:utf-8 -*-

import win32serviceutil 
import win32service 
import win32event 

class PythonService(win32serviceutil.ServiceFramework): 
    """
    Usage: 'PythonService.py [options] install|update|remove|start [...]|stop|restart [...]|debug [...]'
    Options for 'install' and 'update' commands only:
     --username domain\username : The Username the service is to run under
     --password password : The password for the username
     --startup [manual|auto|disabled|delayed] : How the service starts
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值