会话(session)、工作站(WindowStation)、桌面(Disktop)、窗口(window)
https://blog.csdn.net/hlswd/article/details/77741037
windows编程的偏门概念: 会话(Session), 窗口站(Window Station), 桌面
https://blog.csdn.net/zxy355/article/details/50790158
Session 0 隔离
在进行UI自动化测试时,我们会经常会用到FindWindow,FindWindowEx,SendMeesage等这些Windows Function。最近我在windows 7上进行UI自动化测试时发现FindWindow这个函数有时无法获取到打开窗体的句柄,在网上搜了一下原因:应该就是因为Session 0 隔离的问题。特此做下相关文章的记录:
1、Session 0隔离:
http://technet.microsoft.com/zh-cn/ee791007.aspx
2、穿透Session 0 隔离
http://www.cnblogs.com/gnielee/archive/2010/04/07/session0-isolation-part1.html
3、Application Compatibility: Session 0 Isolation
http://msdn.microsoft.com/en-us/library/bb756986.aspx
//**********************************************************************************************
http://mscerts.programming4.us/windows/windows%20sysinternals%20%20%20windows%20core%20concepts%20-%20sessions,%20window%20stations,%20desktops,%20and%20window%20messages.aspx
介绍了session和window station以及desktop的基本作用和拓扑关系
//**********************************************************************************************
//**********************************************************************************************
http://blog.csdn.net/longhaoyou/article/details/6165238
http://blog.csdn.net/baojianhuangbo/article/details/44852725
http://blog.csdn.net/linux7985/article/details/5694672
一些实例
//**********************************************************************************************