How do you communicate between Windows Vista Session 0 and Desktop? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:11:11Zhttp://stackoverflow.com/feeds/question/55639http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/55639/how-do-you-communicate-between-windows-vista-session-0-and-desktop6How do you communicate between Windows Vista Session 0 and Desktop?Keith Maurino2008-09-11T01:29:21Z2008-09-11T02:31:04Z
<p>In prior versions of Windows before Vista you could have a Windows Service interact with the current logged in desktop user to easy display information on the screen from the service. In Windows Vista Session 0 was added for security to isolate the services from the desktop. What is an easy way to communicate between a service and an application running outside of Session 0? So far I have gotten around this by using TCP/IP to communicate between the two but it seems to be kind of a sloppy way to do it.</p>
http://stackoverflow.com/questions/55639/how-do-you-communicate-between-windows-vista-session-0-and-desktop/55664#556644Answer by Rob Walker for How do you communicate between Windows Vista Session 0 and Desktop?Rob Walker2008-09-11T01:48:13Z2008-09-11T01:48:13Z<p>You can use shared memory or named pipe to facilitate IPC as well. Conceptually this is similar to TCP/IP, but you don't have to worry about finding an unused port.</p>
<p>You have to make sure that the named objects you create are prefixed with "Global\" to allow them to be accessed by all sessions as described <a href="http://msdn.microsoft.com/en-us/library/aa366537(VS.85).aspx" rel="nofollow">here</a>.</p>
<p>AFAIK there is no way for a service to directly interact with the desktop any more.</p>
http://stackoverflow.com/questions/55639/how-do-you-communicate-between-windows-vista-session-0-and-desktop/55667#556673Answer by jsight for How do you communicate between Windows Vista Session 0 and Desktop?jsight2008-09-11T01:57:29Z2008-09-11T01:57:29Z<p>Indeed, for security reasons it is no longer possible to communicate directly with the "desktop". What exactly is the "desktop" anyway, when you live in a machine with multiple active users + remote sessions?</p>
<p>The general way to solve the problem is to use service apps which communicate via some RPC mechanism (TCP/IP, IPC, .Net Remoting Channels over one of those, etc). Its kind of a pain, but I think the benefits are worth the change.</p>
http://stackoverflow.com/questions/55639/how-do-you-communicate-between-windows-vista-session-0-and-desktop/55698#556981Answer by Bob Nadler for How do you communicate between Windows Vista Session 0 and Desktop?Bob Nadler2008-09-11T02:31:04Z2008-09-11T02:31:04Z<p>For the service to talk to the desktop, you're pretty much stuck with one of the RPC mechanisms. The .NET remoting mechanism (<a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.channels.ipc.ipcserverchannel.aspx" rel="nofollow">IpcServerChannel</a>) isn't to hard to implement for this purpose. </p>
<p>Also with .NET a desktop application can send messages directly to the service with the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicecontroller.executecommand.aspx" rel="nofollow">ServiceController.ExecuteCommand</a>. These commands are received by the service via <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicebase.oncustomcommand.aspx" rel="nofollow">ServiceBase.OnCustomCommand</a>. This is even easier to do, and would be all you need if controlling the service is your only requirement.</p>