从活动目录中获取配置文件路径和主文件夹

本文关键字:路径 主文件 文件夹 配置文件 获取 活动 | 更新日期: 2023-09-27 18:01:57

我正在使用c#,我能够从活动目录中读取很多值,但是我不知道如何读取配置文件路径或远程桌面服务主文件夹,当查看活动目录中的用户时,它们都可以在远程桌面服务配置文件选项卡上找到。

从活动目录中获取配置文件路径和主文件夹

这些值存储在UserParameters属性中,您可以在这里使用InvokeGet来获取它们,例如获取远程服务配置文件路径:

// Get Directory Entry for the object
DirectoryEntry de = New DirectoryEntry(ldapPath, logonName, password);
object prPAth = de.InvokeGet("TerminalServicesProfilePath"); // Remote Desktop Services profile path. If value is empty you'll get an exception here
object homeFolder = de.InvokeGet("TerminalServicesHomeDirectory"); // Remote Desktop Services home folder