Alert Popups from service in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:06:10Z http://stackoverflow.com/feeds/question/204062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/204062/alert-popups-from-service-in-python 2 Alert Popups from service in Python Unkwntech 2008-10-15T08:42:43Z 2008-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#204082 3 Answer by Greg Hewgill for Alert Popups from service in Python Greg Hewgill 2008-10-15T08:48:06Z 2008-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>