您好我需要将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
中找不到类似“描述”的内容。感谢
答案 0 :(得分:0)
Item.Property("Description")(0).tostring
"说明" =键