No system tray ToolbarWindow32 window handle when running in (64bit) citrix - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:29:34Z http://stackoverflow.com/feeds/question/927636 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/927636/no-system-tray-toolbarwindow32-window-handle-when-running-in-64bit-citrix 1 No system tray ToolbarWindow32 window handle when running in (64bit) citrix Michael 2009-05-29T19:09:32Z 2009-09-25T00:44:01Z <p>We have written a C# command line app that gets run as the first step in a script that is executed when users launch our CRM system on citrix (it is a published app). The purpose of the command line is to find the outlook icon on the system tray and hide it. We do this via PInvoke calls to various WIN32 methods and it works great when testing in a non citrix environment.</p> <p>When we roll this out to our Citrix test server and run via the published app script, our code is not finding windows for the SysPager and (more importantly) ToolbarWindow32 windows that we expect to see in the system tray. Anyone know why? </p> <p>Sample Code:</p> <pre><code>IntPtr shellTrayHwnd = Win32.FindWindow("Shell_TrayWnd", null); IntPtr sysPagerHwnd = Win32.FindWindowEx(shellTrayHwnd, IntPtr.Zero, "SysPager", null); //returns 0 IntPtr toolbarNotifyHwnd = Win32.FindWindowEx(shellTrayHwnd, IntPtr.Zero, "ToolbarWindow32", null); //returns 0 </code></pre> <p>As I said, this code works great when running in a non-citrix session, but once we run in citrix we seem to lose the ability to get these handles.</p> <p>FYI: The ultimate goal here is to hide the outlook icon that gets sent to the client's system tray when our CRM software, which relies on outlook running in the background, is run. If we don't supress the icon, we get two outlook icons in the end-user's tray. One from their local outlook and one from the outlook that is running on citrix in the background for the CRM software to work (the CRM software does not use outlook in embedded mode because we need to be able to run VSTO plugins - which don't get loaded in embedded mode). If someone knows of an easier way, I'm all ears.</p> <p>Thanks</p> http://stackoverflow.com/questions/927636/no-system-tray-toolbarwindow32-window-handle-when-running-in-64bit-citrix/1098777#1098777 1 Answer by Indrora for No system tray ToolbarWindow32 window handle when running in (64bit) citrix Indrora 2009-07-08T15:21:40Z 2009-07-08T15:21:40Z <p>You may want to check your first line. You neeed to pass <code>IntPtr.Zero</code> instead of Null -- thats usually the best way to get the Desktop. The Shell Services Service should also be running (usually under a completely different name) and Explorer needs to be running as well... After that, I'd consider seeing if running Spy++ will Enlighten. </p> http://stackoverflow.com/questions/927636/no-system-tray-toolbarwindow32-window-handle-when-running-in-64bit-citrix/1474888#1474888 0 Answer by Jim C for No system tray ToolbarWindow32 window handle when running in (64bit) citrix Jim C 2009-09-25T00:44:01Z 2009-09-25T00:44:01Z <p>On my system, the hierarchy is</p> <p>Shell_TrayWnd -> TrayNotifyWnd -> SysPager -> ToolbarWindow32</p>