C# 终端服务感知应用程序
我正在考虑创建一个可以在 TS 服务器上有效工作的应用程序(或重构其他内部软件)(据我所知,这意味着每个实例共享内存中的核心代码/数据)。 .NET 框架实际上支持它还是我需要使用一些技术/技术/工具包?
I'm thinking about creating an application (or refactoring other in-house software) which could work effectively on a TS server (which from my knowledge means that every instance shares the core code/data in memory). Does the .NET framework actually support it or would I need to use some technique/technology/toolkit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无需执行任何特殊操作即可在终端服务下运行。
只需确保您的程序可以同时在多个用户下运行,并且它在较低颜色深度下看起来不错。
You don't need to do anything special to run under Terminal Services.
Just make sure that your program can run under multiple users simultaneously, and that it looks good at lower color depths.
我不确定是否可能,但也许您可以尝试确保应用程序只有一个实例在系统范围内运行,并在代码内部尝试分离不同的用户实例。谁能详细说明一下吗?
I'm not sure if is possible, but perhaps you can try to ensure that only one instance of your application is running system-wide and from within you're code, try to seperate different user-instances. Can anyone elaborate on this?