使您的程序与 Active Directory/终端服务兼容时应遵循的准则

发布于 2024-07-26 02:58:21 字数 124 浏览 8 评论 0原文

想知道在编写应用程序时是否应该遵循任何准则,该应用程序不仅应该在普通的非联网计算机上运行,​​而且还可以在使用 Active Directory(或其他目录服务)设置的计算机/网络上运行和/或终端服务? 有什么我应该注意、注意的吗?

Wondering if there's any guidelines that should be followed when writing an application that should work not only on a plain ol' non-networked computer but also on a computer/network that is setup with Active Directory (or some other directory service) and/or Terminal Services? Anything I should look out for, be aware of, etc?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

以往的大感动 2024-08-02 02:58:21

Microsoft 已将终端服务重命名为“远程桌面服务”,因此使用旧术语搜索和查找 MSDN 并不具有建设性。
我开始查看此处的远程桌面服务编程指南

http://msdn.microsoft.com/en-us/library/aa383490(VS.85).aspx

Microsoft has renamed Terminal Services to 'Remote Desktop Services' so searching and looking around MSDN my not be as constructive using the old terminology.
I'd start having a look around Remote Desktop Services Programming Guidelines found here:

http://msdn.microsoft.com/en-us/library/aa383490(VS.85).aspx

以歌曲疗慰 2024-08-02 02:58:21

最需要注意的事情:
在终端服务器上,用户不是管理员,他们无权:

  • 写入程序文件文件夹
  • 注册 ActiveX 控件
  • 写入 Windows(\System32)
  • 注册表 HKLM 配置单元中的

(ini 文件)其他几点:
- 某些 API(如获取 Windows 目录)将返回重定向结果(在本例中为 homedrive 的 windows 子文件夹),除非您将可执行文件标记为 终端服务器感知
- 您的应用程序不得依赖 HKCU 中的设置,以免在不存在时阻止启动
- 多个用户可能同时使用您的应用程序,因此每个用户必须能够拥有自己的设置(在 HKCU 中)

The most important things to be aware of:
On a Terminal Server users are not admins, they have no rights to:

  • Write in Program files folder
  • Register ActiveX controls
  • Write into (ini files) in Windows(\System32)
  • HKLM hive of the registry

Some other points:
- Certain API's like getting the Windows directory will return redirected results (in this case the windows subfolder of the homedrive) UNLESS you mark your executable as Terminal Server aware
- Your application must not rely on settings in HKCU that prevent startup when not present
- Multiple users might use your app concurrently so each user must be able to have their own settings (in HKCU)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文