Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 385 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 385 Bytes

python-windows-service-example

Example on how to create a windows service with Python

Install

  • Install pywin32 (pip install pywin32)
  • Run pywin32 post-install script
  • Install service (py service.py install)
  • Start service (net start pywinsvcexample)

Uninstall

  • Stop service (net stop pywinsvcexample)
  • Remove service (py service.py remove)