从 Python 2.7 脚本启动 XAMPP 控制面板 Apache MySql

Start XAMPP Control Panel Apache MySql from Python 2.7 script

我想自动启动 Apache 和 XAMPP 控制面板的 MySql,而无需向应用程序的用户发出请求。使用 Python 2.7
这些按钮在下面突出显示。



提前致谢!

以管理员身份打开Windows命令提示符

键入 'net start' 以查看 运行 服务列表 windows。

找到服务的名称,例如“Apache2.4”

将python命令写入start/stop/restart服务....

import win32serviceutil
win32serviceutil.StartService('Apache2.4')
win32serviceutil.RestartService('Apache2.4')
win32serviceutil.StopService('Apache2.4')