我正在使用 C#,我可以从 Active Directory 中读取很多值,但是我不知道如何读取配置文件路径或远程桌面服务主文件夹,它们都可以在远程桌面服务中找到查看 Active Directory 中的用户时的“个人资料”选项卡。
问问题
1494 次
1 回答
0
这些值存储在 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
于 2017-08-17T08:31:40.367 回答