Active Directory简单来说,就是Microsfot提供的一项功能服务,它充当集中存储库并存储与Active Directory用户、计算机、服务器和组织内的其他资源等对象相关的所有数据,它使系统管理员的管理变得容易。但它的主要功能是提供一种在域环境中对用户和机器进行身份验证的方法。使用Active Directory,可以远程管理用户、工作站及其权...
下面是顶级类中可用的一些属性的列表,这些属性在 Active Directory 中创建的每个对象上定义。 属性 描述 cn RDN attribute for most object classes, also referred to as the common name.//大多数对象类的 RDN 属性,也称为通用名称 whenCreated Timestamp when the object was created. See Recipe 4.26 for ...
一个ReadOnlyActiveDirectorySchemaClassCollection 对象,包含检索到的类的 ActiveDirectorySchemaClass 对象的集合。 例外 ObjectDisposedException 当前对象已被释放。 适用于 产品版本 .NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 Wi...
The Active Directory schema contains the definitions for all objects in the directory. Every new directory object you create is validated against the appropriate object definition in the schema before being written to the directory. The schema is made up of object classes and attributes. The base ...
Active Directory Chapter 11 fromIntroducing Windows 2000 Server, published by Microsoft Press On This Page Overview Active Directory Components Managing Active Directory Security Use of DNS (Domain Name System) Global Catalog Replication Partitioning Schema: Attributes and Object Classes Objects Standard ...
... //bind to a directory object as shown in the previous code snippet //Add more than one additional value using the AddRange method de.Properties["otherTelephone"].AddRange( new object[] { "<phone number 1>", "<phone number 2>" }); de.CommitChanges(); ...
下面列出了 Active Directory 类的映射信息,其中显示了每个 Active Directory 属性的 WMI 限定符和 WMI 限定符类型。Common-Name CN (VT_BSTR) 直接从字符串值映射。 Default-Object-Category DefaultObjectCategory (VT_BSTR) 直接从字符串值映射。 Default-Security-Descriptor DefaultSecurityDescriptor (VT_BSTR...
TOPIC About Active Directory Object Model SHORT DESCRIPTION Describes the object model of the Active Directory module for Windows PowerShell. LONG DESCRIPTION This topic explains the Active Directory module classes and their properties used to model actual Active Directory attributes. It also outlines the...
Active Directory data takes the form of objects that have properties, or attributes. Each object is an instance of an object class, and object classes and their respective attributes are defined in the Active Directory schema. The values of the attributes define the object, and a change to a...
#end GetHelp Function GetADSchema($Action, $class) { $schema = [DirectoryServices.ActiveDirectory.ActiveDirectorySchema]::GetCurrentSchema() Switch ($Action) { "classes" { $schema.FindAllClasses() | Select-Object -Property Name } "Mandatory" { "Mandatory Properties of $class object" ($schema...