When using constructor to instance an object of DirectorySearcher, there is parameter prppertiesToLoad that is a array of property names
Dim ds As DirectorySearcher = New DirectorySearcher(searchRoot, sFilter, columns, SearchScope.Subtree)
For example {"givenName", "sn", "cn", "sAMAccountName", "telephoneNumber", "l"}
Where to get all available property name for those properties?
I want to get the properties for Account is locked out for the user account I searched out.