Changes between Version 11 and Version 12 of FAQ


Ignore:
Timestamp:
01/24/09 07:42:51 (4 years ago)
Author:
mickem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v11 v12  
    5252 * from NSClient++ 
    5353   - $ (you do not need to escape them at all) 
     54 
     55== 7. System Tray does not work == 
     56=== Older WIndows === 
     57If you are using "older windows" (ie. XP and below) you can use the "old" sytray module like so: 
     58{{{ 
     59[modules] 
     60SysTray.dll 
     61}}} 
     62and then run: 
     63{{{ 
     64NSClient++ -noboot SysTray install 
     65}}} 
     66=== "modern" windows === 
     67If you are using "modern" windows ie. vista, 2k3, 2k8, etc etc there is no "session 0" (or there is but you do not see it by default) so they sytray (which ends up on session 0) wont be visible by your session 1 (or above). Thus I started work on a new "modern implementation" this comes in the form of a shared session (based on shared memory and mutexes). 
     68'''But since this is rather new it is very experimental''' so use it with care! 
     69To enable shared session do the following: 
     70{{{ 
     71[modules] 
     72; SysTray.dll <--- NOTICE THE COMMENT 
     73 
     74[Settings] 
     75shared_session=1 
     76}}}