Detect citrix "application mode"? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T11:15:07Zhttp://stackoverflow.com/feeds/question/304836http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/304836/detect-citrix-application-mode3Detect citrix "application mode"?Lasse V. Karlsen2008-11-20T10:06:13Z2009-04-13T19:06:13Z
<p>Forgive me for probably using the wrong term for this "application mode".</p>
<p>Our application has a problem during start in that it doesn't show a task bar icon until the main window is up, even though there are loading progress windows, logon-windows, etc. on screen before that.</p>
<p>We change the code to fix this, but unfortunately this fix, when running the app through citrix, now shows two icons, one with just the icon and no text.</p>
<p>Is there a way for me to detect that the application is running through citrix? I don't know the right term for this, but only the app window is brought to the users desktop, not the whole remote desktop.</p>
<p>If it matters, the app is written in Delphi.</p>
http://stackoverflow.com/questions/304836/detect-citrix-application-mode/304867#3048678Answer by John Sibly for Detect citrix "application mode"?John Sibly2008-11-20T10:22:11Z2008-11-20T14:13:48Z<p>Not sure exactly how to do this in delphi, but if you can call out to the user32.dll, and call the function:</p>
<pre><code>if (GetSystemMetrics(SM_REMOTESESSION) != 0)
{
// We are in a remote session
}
</code></pre>
<p>This should tell you if you are running in a Citrix or Terminal Services environment.
SM_REMOTESESSION is defined as:</p>
<pre><code>#define SM_REMOTESESSION 0x1000
</code></pre>
<p>More info on the GetSystemMetrics api here:
<a href="http://msdn.microsoft.com/en-us/library/ms724385.aspx" rel="nofollow">Link to msdn</a></p>
<p><strong>Edit</strong>
The following page describes how to do exactly the above in delphi. What works for Terminal Services should also work for Citrix:</p>
<p><a href="http://delphi.about.com/od/delphitips2008/qt/isremotesession.htm" rel="nofollow">Is your Delphi Application Running under Terminal Services as a Remote Session</a></p>
http://stackoverflow.com/questions/304836/detect-citrix-application-mode/416275#4162753Answer by open-collar for Detect citrix "application mode"?open-collar2009-01-06T12:04:50Z2009-01-06T12:04:50Z<p>This works for me:</p>
<pre><code>return System.Windows.Forms.SystemInformation.TerminalServerSession;
</code></pre>
http://stackoverflow.com/questions/304836/detect-citrix-application-mode/745009#7450092Answer by PeterAllenWebb for Detect citrix "application mode"?PeterAllenWebb2009-04-13T19:06:13Z2009-04-13T19:06:13Z<p>A side-note for the curious: The solution proposed by "open-collar" is just a .NET wrapper for the one given by John Sibly. They should return the same result in every case. I confirmed this by disassembling the System.Windows.Forms.SystemInformation class.</p>