我正在尝试使用 VB.NET 在 Active Directory 中添加用户配置文件配置文件路径信息,DirectoryServices.AccountManagement
但似乎无法做到。我可以添加我需要的所有其他字段,包括与配置文件路径位于同一选项卡中的登录脚本。
我一直在查看MS 的 UserPrincipal,但我看不到任何与配置文件路径相关的内容。
相关代码:
Dim ctx As New PrincipalContext(ContextType.Domain, "sometext", "OU=Domain Objects,DC=sometext,DC=local")
Dim user As New UserPrincipal(ctx, "NewUser", "pass@1w0rd01", True)
user.GivenName = "GivenName"
user.Surname = "Surname"
user.HomeDirectory = "\\MyHomeDirectory\"
user.HomeDrive = "Z:"
user.ExpirePasswordNow()
user.Save()