活动目录 VBS 到 VB
Active directory VBS to VB
您好,我需要将 VBS 脚本重写为 VB 文件,但我无法跟进。
在 VBS 中有这个:
Set OU = GetObject(LDAP_Path)
OU.Filter = Array("OrganizationalUnit")
For Each Item In OU
Description_OU = CStr(Item.Get("Description")) //Here is problem
...
在 VB (2010) 我使用 "System.DirectoryServices." 因为我需要使用 Active Directory
我的问题:
为什么有时 Description_OU 是空的,我如何在 VB 中测试它,其中 Item 是:
Dim Item = System.DirectoryServices.DirectoryEntry
换句话说:我在 .DirectoryEntry
中找不到像 "Description" 这样的东西
谢谢
Item.Property("Description")(0).tostring
"Description" = 关键
您好,我需要将 VBS 脚本重写为 VB 文件,但我无法跟进。
在 VBS 中有这个:
Set OU = GetObject(LDAP_Path)
OU.Filter = Array("OrganizationalUnit")
For Each Item In OU
Description_OU = CStr(Item.Get("Description")) //Here is problem
...
在 VB (2010) 我使用 "System.DirectoryServices." 因为我需要使用 Active Directory
我的问题:
为什么有时 Description_OU 是空的,我如何在 VB 中测试它,其中 Item 是:
Dim Item = System.DirectoryServices.DirectoryEntry
换句话说:我在 .DirectoryEntry
中找不到像 "Description" 这样的东西谢谢
Item.Property("Description")(0).tostring
"Description" = 关键