user interface - Starting a GUI process from a Python Windows Service -
I am creating a Windows service class in Python which will eventually display a window when some conditions are met. Since (as I think) services can not have a GUI, I am trying to start a GUI in a different process (using subprocess.open
) when the conditions are correct Probably not, because the hair process has the same privileges as the service.
So how can I start the process from a Python Windows service that has the ability to display a GUI on the screen?
If you offer your service, then allow the service to interact with the desktop < / Code> Permission to be able to create windows without the need to launch a subprocess.
Comments
Post a Comment