Alert Popups from service in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:06:10Zhttp://stackoverflow.com/feeds/question/204062http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/204062/alert-popups-from-service-in-python2Alert Popups from service in PythonUnkwntech2008-10-15T08:42:43Z2008-11-22T13:54:50Z
<p>I have been using win32api.MessageBox to do alerts, and this works for apps running from the interactive prompt and normally executed code, however when I built a Python service when a MessageBox is triggered I can hear the 'beep' but the box does not display. Is it possible to display alerts from services?</p>
http://stackoverflow.com/questions/204062/alert-popups-from-service-in-python/204082#2040823Answer by Greg Hewgill for Alert Popups from service in PythonGreg Hewgill2008-10-15T08:48:06Z2008-10-15T08:48:06Z<p>No, Windows services run on a completely separate hidden desktop and have no access to the logged-on user's desktop. There is no way around this from a service developer's perspective.</p>
<p>In previous versions of Windows, it was possible for a service to be marked as "allowed to interact with the user desktop", but this option was removed in XP or Vista (I forget which). Now, services cannot interact with the user desktop.</p>
<p>One solution to your problem might be to have a desktop application that communicates with the service through some IPC method. When the service wants to alert the user of some condition, it would notify the desktop application which would then display a regular message box.</p>