Microsoft windows activedirectory domainservice

This article is about Microsoft’s on-premises directory service. For their cloud-based system formerly known as Azure Active Directory, see Microsoft Entra ID.

Active Directory (AD) is a directory service developed by Microsoft for Windows domain networks. Windows Server operating systems include it as a set of processes and services.[1][2] Originally, only centralized domain management used Active Directory. However, it ultimately became an umbrella title for various directory-based identity-related services.[3]

A domain controller is a server running the Active Directory Domain Services (AD DS) role. It authenticates and authorizes all users and computers in a Windows domain-type network, assigning and enforcing security policies for all computers and installing or updating software. For example, when a user logs into a computer which is part of a Windows domain, Active Directory checks the submitted username and password and determines whether the user is a system administrator or a non-admin user.[4] Furthermore, it allows the management and storage of information, provides authentication and authorization mechanisms, and establishes a framework to deploy other related services: Certificate Services, Active Directory Federation Services, Lightweight Directory Services, and Rights Management Services.[5]

Active Directory uses Lightweight Directory Access Protocol (LDAP) versions 2 and 3, Microsoft’s version of Kerberos,[6] and DNS.[7]

Robert R. King defined it in the following way:[8]

«A domain represents a database. That database holds records about network services-things like computers, users, groups and other things that use, support, or exist on a network. The domain database is, in effect, Active Directory.»

Like many information-technology efforts, Active Directory originated out of a democratization of design using Requests for Comments (RFCs). The Internet Engineering Task Force (IETF) oversees the RFC process and has accepted numerous RFCs initiated by widespread participants. For example, LDAP underpins Active Directory. Also, X.500 directories and the Organizational Unit preceded the Active Directory concept that uses those methods. The LDAP concept began to emerge even before the founding of Microsoft in April 1975, with RFCs as early as 1971. RFCs contributing to LDAP include RFC 1823 (on the LDAP API, August 1995),[9] RFC 2307, RFC 3062, and RFC 4533.[10][11][12]

Microsoft previewed Active Directory in 1999, released it first with Windows 2000 Server edition, and revised it to extend functionality and improve administration in Windows Server 2003. Active Directory support was also added to Windows 95, Windows 98, and Windows NT 4.0 via patch, with some unsupported features.[13][14] Additional improvements came with subsequent versions of Windows Server. In Windows Server 2008, Microsoft added further services to Active Directory, such as Active Directory Federation Services.[15] The part of the directory in charge of managing domains, which was a core part of the operating system,[15] was renamed Active Directory Domain Services (ADDS) and became a server role like others.[3] «Active Directory» became the umbrella title of a broader range of directory-based services.[16] According to Byron Hynes, everything related to identity was brought under Active Directory’s banner.[3]

Active Directory Services

[edit]

Active Directory Services consist of multiple directory services. The best known is Active Directory Domain Services, commonly abbreviated as AD DS or simply AD.

Active Directory Domain Services (AD DS) is the foundation of every Windows domain network. It stores information about domain members, including devices and users, verifies their credentials, and defines their access rights. The server running this service is called a domain controller. A domain controller is contacted when a user logs into a device, accesses another device across the network, or runs a line-of-business Metro-style app sideloaded into a machine.

Other Active Directory services (excluding LDS, as described below) and most Microsoft server technologies rely on or use Domain Services; examples include Group Policy, Encrypting File System, BitLocker, Domain Name Services, Remote Desktop Services, Exchange Server, and SharePoint Server.

The self-managed Active Directory DS must be distinct from managed Azure AD DS, a cloud product.[17]

Lightweight Directory Services

[edit]

Active Directory Lightweight Directory Services (AD LDS), previously called Active Directory Application Mode (ADAM),[18] implements the LDAP protocol for AD DS.[19] It runs as a service on Windows Server and offers the same functionality as AD DS, including an equal API. However, AD LDS does not require the creation of domains or domain controllers. It provides a Data Store for storing directory data and a Directory Service with an LDAP Directory Service Interface. Unlike AD DS, multiple AD LDS instances can operate on the same server.

Certificate Services

[edit]

Active Directory Certificate Services (AD CS) establishes an on-premises public key infrastructure. It can create, validate, revoke and perform other similar actions, public key certificates for internal uses of an organization. These certificates can be used to encrypt files (when used with Encrypting File System), emails (per S/MIME standard), and network traffic (when used by virtual private networks, Transport Layer Security protocol or IPSec protocol).

AD CS predates Windows Server 2008, but its name was simply Certificate Services.[20]

AD CS requires an AD DS infrastructure.[21]

Federation Services

[edit]

Active Directory Federation Services (AD FS) is a single sign-on service. With an AD FS infrastructure in place, users may use several web-based services (e.g. internet forum, blog, online shopping, webmail) or network resources using only one set of credentials stored at a central location, as opposed to having to be granted a dedicated set of credentials for each service. AD FS uses many popular open standards to pass token credentials such as SAML, OAuth or OpenID Connect.[22] AD FS supports encryption and signing of SAML assertions.[23] AD FS’s purpose is an extension of that of AD DS: The latter enables users to authenticate with and use the devices that are part of the same network, using one set of credentials. The former enables them to use the same set of credentials in a different network.

As the name suggests, AD FS works based on the concept of federated identity.

AD FS requires an AD DS infrastructure, although its federation partner may not.[24]

Rights Management Services

[edit]

Active Directory Rights Management Services (AD RMS), previously known as Rights Management Services or RMS before Windows Server 2008, is server software that allows for information rights management, included with Windows Server. It uses encryption and selective denial to restrict access to various documents, such as corporate e-mails, Microsoft Word documents, and web pages. It also limits the operations authorized users can perform on them, such as viewing, editing, copying, saving, or printing. IT administrators can create pre-set templates for end users for convenience, but end users can still define who can access the content and what actions they can take.[25]

Active Directory is a service comprising a database and executable code. It is responsible for managing requests and maintaining the database. The Directory System Agent is the executable part, a set of Windows services and processes that run on Windows 2000 and later.[1] Accessing the objects in Active Directory databases is possible through various interfaces such as LDAP, ADSI, messaging API, and Security Accounts Manager services.[2]

A simplified example of a publishing company’s internal network. The company has four groups with varying permissions to the three shared folders on the network.

Active Directory structures consist of information about objects classified into two categories: resources (such as printers) and security principals (which include user or computer accounts and groups). Each security principal is assigned a unique security identifier (SID). An object represents a single entity, such as a user, computer, printer, or group, along with its attributes. Some objects may even contain other objects within them. Each object has a unique name, and its definition is a set of characteristics and information by a schema, which determines the storage in the Active Directory.

Administrators can extend or modify the schema using the schema object when needed. However, because each schema object is integral to the definition of Active Directory objects, deactivating or changing them can fundamentally alter or disrupt a deployment. Modifying the schema affects the entire system automatically, and new objects cannot be deleted, only deactivated. Changing the schema usually requires planning.[26]

Forests, trees, and domains

[edit]

In an Active Directory network, the framework that holds objects has different levels: the forest, tree, and domain. Domains within a deployment contain objects stored in a single replicable database, and the DNS name structure identifies their domains, the namespace. A domain is a logical group of network objects such as computers, users, and devices that share the same Active Directory database.

On the other hand, a tree is a collection of domains and domain trees in a contiguous namespace linked in a transitive trust hierarchy. The forest is at the top of the structure, a collection of trees with a standard global catalog, directory schema, logical structure, and directory configuration. The forest is a secure boundary that limits access to users, computers, groups, and other objects.

Organizational units

[edit]

The objects held within a domain can be grouped into organizational units (OUs).[27] OUs can provide hierarchy to a domain, ease its administration, and can resemble the organization’s structure in managerial or geographical terms. OUs can contain other OUs—domains are containers in this sense. Microsoft recommends using OUs rather than domains for structure and simplifying the implementation of policies and administration. The OU is the recommended level at which to apply group policies, which are Active Directory objects formally named group policy objects (GPOs), although policies can also be applied to domains or sites (see below). The OU is the level at which administrative powers are commonly delegated, but delegation can be performed on individual objects or attributes as well.

Organizational units do not each have a separate namespace. As a consequence, for compatibility with Legacy NetBios implementations, user accounts with an identical SamAccountName are not allowed within the same domain even if the accounts objects are in separate OUs. This is because SamAccountName, a user object attribute, must be unique within the domain.[28] However, two users in different OUs can have the same common name (CN), the name under which they are stored in the directory itself such as «fred.staff-ou.domain» and «fred.student-ou.domain», where «staff-ou» and «student-ou» are the OUs.

In general, the reason for this lack of allowance for duplicate names through hierarchical directory placement is that Microsoft primarily relies on the principles of NetBIOS, which is a flat-namespace method of network object management that, for Microsoft software, goes all the way back to Windows NT 3.1 and MS-DOS LAN Manager. Allowing for duplication of object names in the directory, or completely removing the use of NetBIOS names, would prevent backward compatibility with legacy software and equipment. However, disallowing duplicate object names in this way is a violation of the LDAP RFCs on which Active Directory is supposedly based.

As the number of users in a domain increases, conventions such as «first initial, middle initial, last name» (Western order) or the reverse (Eastern order) fail for common family names like Li (李), Smith or Garcia. Workarounds include adding a digit to the end of the username. Alternatives include creating a separate ID system of unique employee/student ID numbers to use as account names in place of actual users’ names and allowing users to nominate their preferred word sequence within an acceptable use policy.

Because duplicate usernames cannot exist within a domain, account name generation poses a significant challenge for large organizations that cannot be easily subdivided into separate domains, such as students in a public school system or university who must be able to use any computer across the network.

In Active Directory, organizational units (OUs) cannot be assigned as owners or trustees. Only groups are selectable, and members of OUs cannot be collectively assigned rights to directory objects.

In Microsoft’s Active Directory, OUs do not confer access permissions, and objects placed within OUs are not automatically assigned access privileges based on their containing OU. It represents a design limitation specific to Active Directory, and other competing directories, such as Novell NDS, can set access privileges through object placement within an OU.

Active Directory requires a separate step for an administrator to assign an object in an OU as a group member also within that OU. Using only the OU location to determine access permissions is unreliable since the entity might not have been assigned to the group object for that OU yet.

A common workaround for an Active Directory administrator is to write a custom PowerShell or Visual Basic script to automatically create and maintain a user group for each OU in their Directory. The scripts run periodically to update the group to match the OU’s account membership. However, they cannot instantly update the security groups anytime the directory changes, as occurs in competing directories, as security is directly implemented into the Directory. Such groups are known as shadow groups. Once created, these shadow groups are selectable in place of the OU in the administrative tools. Microsoft’s Server 2008 reference documentation mentions shadow groups but does not provide instructions on creating them. Additionally, there are no available server methods or console snap-ins for managing these groups.[29]

An organization must determine the structure of its information infrastructure by dividing it into one or more domains and top-level OUs. This decision is critical and can base on various models such as business units, geographical locations, IT service, object type, or a combination of these models. The immediate purpose of organizing OUs is to simplify administrative delegation and, secondarily, to apply group policies. While OUs serve as an administrative boundary, the forest itself is the only security boundary. All other domains must trust any administrator in the forest to maintain security.[30]

The Active Directory database is organized in partitions, each holding specific object types and following a particular replication pattern. Microsoft often refers to these partitions as ‘naming contexts.[31] The ‘Schema’ partition defines object classes and attributes within the forest. The ‘Configuration’ partition contains information on the physical structure and configuration of the forest (such as the site topology). Both replicate all domains in the forest. The ‘Domain’ partition holds all objects created in that domain and replicates only within it.

Sites are physical (rather than logical) groupings defined by one or more IP subnets.[32] AD also defines connections, distinguishing low-speed (e.g., WAN, VPN) from high-speed (e.g., LAN) links. Site definitions are independent of the domain and OU structure and are shared across the forest. Sites play a crucial role in managing network traffic created by replication and directing clients to their nearest domain controllers (DCs). Microsoft Exchange Server 2007 uses the site topology for mail routing. Administrators can also define policies at the site level.

The Active Directory information is physically held on one or more peer domain controllers, replacing the NT PDC/BDC model. Each DC has a copy of the Active Directory. Member servers joined to Active Directory that are not domain controllers are called Member Servers.[33] In the domain partition, a group of objects acts as copies of domain controllers set up as global catalogs. These global catalog servers offer a comprehensive list of all objects in the forest.[34][35]

Global Catalog servers replicate all objects from all domains to themselves, providing an international listing of entities in the forest. However, to minimize replication traffic and keep the GC’s database small, only selected attributes of each object are replicated, called the partial attribute set (PAS). The PAS can be modified by modifying the schema and marking features for replication to the GC.[36] Earlier versions of Windows used NetBIOS to communicate. Active Directory is fully integrated with DNS and requires TCP/IP—DNS. To fully operate, the DNS server must support SRV resource records, also known as service records.

Active Directory uses multi-master replication to synchronize changes,[37] meaning replicas pull changes from the server where the change occurred rather than being pushed to them.[38] The Knowledge Consistency Checker (KCC) uses defined sites to manage traffic and create a replication topology of site links. Intra-site replication occurs frequently and automatically due to change notifications, which prompt peers to begin a pull replication cycle. Replication intervals between different sites are usually less consistent and don’t usually use change notifications. However, it’s possible to set it up to be the same as replication between locations on the same network if needed.

Each DS3, T1, and ISDN link can have a cost, and the KCC alters the site link topology accordingly. Replication may occur transitively through several site links on same-protocol site link bridges if the price is low. However, KCC automatically costs a direct site-to-site link lower than transitive connections. A bridgehead server in each zone can send updates to other DCs in the exact location to replicate changes between sites. To configure replication for Active Directory zones, activate DNS in the domain based on the site.

To replicate Active Directory, Remote Procedure Calls (RPC) over IP (RPC/IP) are used. SMTP is used to replicate between sites but only for modifications in the Schema, Configuration, or Partial Attribute Set (Global Catalog) GCs. It’s not suitable for reproducing the default Domain partition.[39]

Generally, a network utilizing Active Directory has more than one licensed Windows server computer. Backup and restore of Active Directory are possible for a network with a single domain controller.[40] However, Microsoft recommends more than one domain controller to provide automatic failover protection of the directory.[41] Domain controllers are ideally single-purpose for directory operations only and should not run any other software or role.[42]

Since certain Microsoft products, like SQL Server[43][44] and Exchange,[45] can interfere with the operation of a domain controller, isolation of these products on additional Windows servers is advised. Combining them can complicate the configuration and troubleshooting of the domain controller or the other installed software more complex.[46] If planning to implement Active Directory, a business should purchase multiple Windows server licenses to have at least two separate domain controllers. Administrators should consider additional domain controllers for performance or redundancy and individual servers for tasks like file storage, Exchange, and SQL Server[47] since this will guarantee that all server roles are adequately supported.

One way to lower the physical hardware costs is by using virtualization. However, for proper failover protection, Microsoft recommends not running multiple virtualized domain controllers on the same physical hardware.[48]

The Active-Directory database, the directory store, in Windows 2000 Server uses the JET Blue-based Extensible Storage Engine (ESE98). Each domain controller’s database is limited to 16 terabytes and 2 billion objects (but only 1 billion security principals). Microsoft has created NTDS databases with more than 2 billion objects.[49] NT4’s Security Account Manager could support up to 40,000 objects. It has two main tables: the data table and the link table. Windows Server 2003 added a third main table for security descriptor single instancing.[49]

Programs may access the features of Active Directory[50] via the COM interfaces provided by Active Directory Service Interfaces.[51]

To allow users in one domain to access resources in another, Active Directory uses trusts.[52]

Trusts inside a forest are automatically created when domains are created. The forest sets the default boundaries of trust, and implicit, transitive trust is automatic for all domains within a forest.

One-way trust
One domain allows access to users on another domain, but the other domain does not allow access to users on the first domain.
Two-way trust
Two domains allow access to users on both domains.
Trusted domain
The domain that is trusted; whose users have access to the trusting domain.
Transitive trust
A trust that can extend beyond two domains to other trusted domains in the forest.
Intransitive trust
A one way trust that does not extend beyond two domains.
Explicit trust
A trust that an admin creates. It is not transitive and is one way only.
Cross-link trust
An explicit trust between domains in different trees or the same tree when a descendant/ancestor (child/parent) relationship does not exist between the two domains.
Shortcut
Joins two domains in different trees, transitive, one- or two-way.
Forest trust
Applies to the entire forest. Transitive, one- or two-way.
Realm
Can be transitive or nontransitive (intransitive), one- or two-way.
External
Connect to other forests or non-Active Directory domains. Nontransitive, one- or two-way.[53]
PAM trust
A one-way trust used by Microsoft Identity Manager from a (possibly low-level) production forest to a (Windows Server 2016 functionality level) ‘bastion’ forest, which issues time-limited group memberships.[54][55]

Microsoft Active Directory management tools include:

  • Active Directory Administrative Center (Introduced with Windows Server 2012 and above),
  • Active Directory Users and Computers,
  • Active Directory Domains and Trusts,
  • Active Directory Sites and Services,
  • ADSI Edit,
  • Local Users and Groups,
  • Active Directory Schema snap-ins for Microsoft Management Console (MMC),
  • SysInternals ADExplorer.

These management tools may not provide enough functionality for efficient workflow in large environments. Some third-party tools extend the administration and management capabilities. They provide essential features for a more convenient administration process, such as automation, reports, integration with other services, etc.

Varying levels of interoperability with Active Directory can be achieved on most Unix-like operating systems (including Unix, Linux, Mac OS X or Java and Unix-based programs) through standards-compliant LDAP clients, but these systems usually do not interpret many attributes associated with Windows components, such as Group Policy and support for one-way trusts.

Third parties offer Active Directory integration for Unix-like platforms, including:

  • PowerBroker Identity Services, formerly Likewise (BeyondTrust, formerly Likewise Software) – Allows a non-Windows client to join Active Directory[56]
  • ADmitMac (Thursby Software Systems)[56]
  • Samba (free software under GPLv3) – Can act as a fully functional Active Directory[57][58]

The schema additions shipped with Windows Server 2003 R2 include attributes that map closely enough to RFC 2307 to be generally usable. The reference implementation of RFC 2307, nss_ldap and pam_ldap provided by PADL.com, support these attributes directly. The default schema for group membership complies with RFC 2307bis (proposed).[59] Windows Server 2003 R2 includes a Microsoft Management Console snap-in that creates and edits the attributes.

An alternative option is to use another directory service as non-Windows clients authenticate to this while Windows Clients authenticate to Active Directory. Non-Windows clients include 389 Directory Server (formerly Fedora Directory Server, FDS), ViewDS v7.2 XML Enabled Directory, and Sun Microsystems Sun Java System Directory Server. The latter two are both able to perform two-way synchronization with Active Directory and thus provide a «deflected» integration.

Another option is to use OpenLDAP with its translucent overlay, which can extend entries in any remote LDAP server with additional attributes stored in a local database. Clients pointed at the local database see entries containing both the remote and local attributes, while the remote database remains completely untouched.[citation needed]

Administration (querying, modifying, and monitoring) of Active Directory can be achieved via many scripting languages, including PowerShell, VBScript, JScript/JavaScript, Perl, Python, and Ruby.[60][61][62][63] Free and non-free Active Directory administration tools can help to simplify and possibly automate Active Directory management tasks.

Since October 2017 Amazon AWS offers integration with Microsoft Active Directory.[64]

  • AGDLP (implementing role based access controls using nested groups)
  • Apple Open Directory
  • Flexible single master operation
  • FreeIPA
  • List of LDAP software
  • System Security Services Daemon (SSSD)
  • Univention Corporate Server
  1. ^ a b «Directory System Agent». MSDN Library. Microsoft. Retrieved 23 April 2014.
  2. ^ a b Solomon, David A.; Russinovich, Mark (2005). «Chapter 13». Microsoft Windows Internals: Microsoft Windows Server 2003, Windows XP, and Windows 2000 (4th ed.). Redmond, Washington: Microsoft Press. p. 840. ISBN 0-7356-1917-4.
  3. ^ a b c Hynes, Byron (November 2006). «The Future of Windows: Directory Services in Windows Server «Longhorn»«. TechNet Magazine. Microsoft. Archived from the original on 30 April 2020. Retrieved 30 April 2020.
  4. ^ «Active Directory on a Windows Server 2003 Network». Active Directory Collection. Microsoft. 13 March 2003. Archived from the original on 30 April 2020. Retrieved 25 December 2010.
  5. ^ Rackspace Support (27 April 2016). «Install Active Directory Domain Services on Windows Server 2008 R2 Enterprise 64-bit». Rackspace. Rackspace US, Inc. Archived from the original on 30 April 2020. Retrieved 22 September 2016.
  6. ^ «Microsoft Kerberos — Win32 apps». docs.microsoft.com. 7 January 2021.
  7. ^ «Domain Name System (DNS)». docs.microsoft.com. 10 January 2022.
  8. ^ King, Robert (2003). Mastering Active directory for Windows server 2003 (3rd ed.). Alameda, Calif.: Sybex. p. 159. ISBN 978-0-7821-5201-2. OCLC 62876800.
  9. ^ Howes, T.; Smith, M. (August 1995). «The LDAP Application Program Interface». The Internet Engineering Task Force (IETF). Archived from the original on 30 April 2020. Retrieved 26 November 2013.
  10. ^ Howard, L. (March 1998). «An Approach for Using LDAP as a Network Information Service». Internet Engineering Task Force (IETF). Archived from the original on 30 April 2020. Retrieved 26 November 2013.
  11. ^ Zeilenga, K. (February 2001). «LDAP Password Modify Extended Operation». The Internet Engineering Task Force (IETF). Archived from the original on 30 April 2020. Retrieved 26 November 2013.
  12. ^ Zeilenga, K.; Choi, J.H. (June 2006). «The Lightweight Directory Access Protocol (LDAP) Content Synchronization Operation». The Internet Engineering Task Force (IETF). Archived from the original on 30 April 2020. Retrieved 26 November 2013.
  13. ^ Daniel Petri (8 January 2009). «Active Directory Client (dsclient) for Win98/NT».
  14. ^ «Dsclient.exe connects Windows 9x/NT PCs to Active Directory». 5 June 2003.
  15. ^ a b Thomas, Guy (29 November 2000). «Windows Server 2008 — New Features». ComputerPerformance.co.uk. Computer Performance Ltd. Archived from the original on 2 September 2019. Retrieved 30 April 2020.
  16. ^ «What’s New in Active Directory in Windows Server». Windows Server 2012 R2 and Windows Server 2012 Tech Center. Microsoft. 31 August 2016.
  17. ^ «Compare Active Directory-based services in Azure». docs.microsoft.com. 3 April 2023.
  18. ^ «AD LDS». Microsoft. Retrieved 28 April 2009.
  19. ^ «AD LDS versus AD DS». Microsoft. 2 July 2012. Retrieved 25 February 2013.
  20. ^ Zacker, Craig (2003). «11: Creating and Managing Digital Certificates». In Harding, Kathy; Jean, Trenary; Linda, Zacker (eds.). Planning and Maintaining a Microsoft Windows server 2003 Network Infrastructure. Redmond, WA: Microsoft Press. pp. 11–16. ISBN 0-7356-1893-3.
  21. ^ «Active Directory Certificate Services Overview». Microsoft TechNet. Microsoft. Retrieved 24 November 2015.
  22. ^ «Overview of authentication in Power Apps portals». Microsoft Docs. Microsoft. Retrieved 30 January 2022.
  23. ^ «How to Replace the SSL, Service Communications, Token-Signing, and Token-Decrypting Certificates». TechNet. Microsoft. Retrieved 30 January 2022.
  24. ^ «Step 1: Preinstallation Tasks». TechNet. Microsoft. Retrieved 21 October 2021.
  25. ^ «Test Lab Guide: Deploying an AD RMS Cluster». Microsoft Docs. Microsoft. 31 August 2016. Retrieved 30 January 2022.
  26. ^ Windows Server 2003: Active Directory Infrastructure. Microsoft Press. 2003. pp. 1–8–1–9.
  27. ^ «Organizational Units». Distributed Systems Resource Kit (TechNet). Microsoft. 2011. An organizational unit in Active Directory is analogous to a directory in the file system
  28. ^ «SamAccountName is always unique in a Windows domain… or is it?». Joeware. 4 January 2012. Retrieved 18 September 2013. examples of how multiple AD objects can be created with the same SamAccountName
  29. ^ Microsoft Server 2008 Reference, discussing shadow groups used for fine-grained password policies: https://technet.microsoft.com/en-us/library/cc770394%28WS.10%29.aspx
  30. ^ «Specifying Security and Administrative Boundaries». Microsoft Corporation. 23 January 2005. However, service administrators have abilities that cross domain boundaries. For this reason, the forest is the ultimate security boundary, not the domain.
  31. ^ Andreas Luther (9 December 2009). «Active Directory Replication Traffic». Microsoft Corporation. Retrieved 26 May 2010. The Active Directory is made up of one or more naming contexts or partitions.
  32. ^
    «Sites overview». Microsoft Corporation. 21 January 2005. A site is a set of well-connected subnets.
  33. ^ «Planning for domain controllers and member servers». Microsoft Corporation. 21 January 2005. […] member servers, […] belong to a domain but do not contain a copy of the Active Directory data.
  34. ^ «What Is the Global Catalog?». Microsoft Corporation. 10 December 2009. […] a domain controller can locate only the objects in its domain. […] The global catalog provides the ability to locate objects from any domain […]
  35. ^ «Global Catalog». Microsoft Corporation.
  36. ^ «Attributes Included in the Global Catalog». Microsoft Corporation. 26 August 2010. The isMemberOfPartialAttributeSet attribute of an attributeSchema object is set to TRUE if the attribute is replicated to the global catalog. […] When deciding whether or not to place an attribute in the global catalog remember that you are trading increased replication and increased disk storage on global catalog servers for, potentially, faster query performance.
  37. ^ «Directory data store». Microsoft Corporation. 21 January 2005. Active Directory uses four distinct directory partition types to store […] data. Directory partitions contain domain, configuration, schema, and application data.
  38. ^ «What Is the Active Directory Replication Model?». Microsoft Corporation. 28 March 2003. Domain controllers request (pull) changes rather than send (push) changes that might not be needed.
  39. ^ «What Is Active Directory Replication Topology?». Microsoft Corporation. 28 March 2003. SMTP can be used to transport nondomain replication […]
  40. ^ «Active Directory Backup and Restore». TechNet. Microsoft. 9 December 2009. Retrieved 5 February 2014.
  41. ^ «AD DS: All domains should have at least two functioning domain controllers for redundancy». TechNet. Microsoft. Retrieved 5 February 2014.
  42. ^ Posey, Brien (23 August 2010). «10 tips for effective Active Directory design». TechRepublic. CBS Interactive. Retrieved 5 February 2014. Whenever possible, your domain controllers should run on dedicated servers (physical or virtual).
  43. ^ «You may encounter problems when installing SQL Server on a domain controller (Revision 3.0)». Support. Microsoft. 7 January 2013. Retrieved 5 February 2014.
  44. ^ Degremont, Michel (30 June 2011). «Can I install SQL Server on a domain controller?». Microsoft SQL Server blog. Retrieved 5 February 2014. For security and performance reasons, we recommend that you do not install a standalone SQL Server on a domain controller.
  45. ^ «Installing Exchange on a domain controller is not recommended». TechNet. Microsoft. 22 March 2013. Retrieved 5 February 2014.
  46. ^ «Security Considerations for a SQL Server Installation». TechNet. Microsoft. Retrieved 5 February 2014. After SQL Server is installed on a computer, you cannot change the computer from a domain controller to a domain member. You must uninstall SQL Server before you change the host computer to a domain member.
  47. ^ «Exchange Server Analyzer». TechNet. Microsoft. Retrieved 5 February 2014. Running SQL Server on the same computer as a production Exchange mailbox server is not recommended.
  48. ^ «Running Domain Controllers in Hyper-V». TechNet. Microsoft. Planning to Virtualize Domain Controllers. Retrieved 5 February 2014. You should attempt to avoid creating potential single points of failure when you plan your virtual domain controller deployment.frank
  49. ^ a b efleis (8 June 2006). «Large AD database? Probably not this large». Blogs.technet.com. Archived from the original on 17 August 2009. Retrieved 20 November 2011.
  50. ^ Berkouwer, Sander. «Active Directory basics». Veeam Software.
  51. ^
    Active Directory Service Interfaces, Microsoft
  52. ^ «Domain and Forest Trusts Technical Reference». Microsoft Corporation. 28 March 2003. Trusts enable […] authentication and […] sharing resources across domains or forests
  53. ^ «Domain and Forest Trusts Work». Microsoft Corporation. 11 December 2012. Retrieved 29 January 2013. Defines several kinds of trusts. (automatic, shortcut, forest, realm, external)
  54. ^ «Privileged Access Management for Active Directory Domain Services». docs.microsoft.com. 8 February 2023.
  55. ^ «TechNet Wiki». social.technet.microsoft.com. 17 January 2024.
  56. ^ a b Edge, Charles S. Jr; Smith, Zack; Hunter, Beau (2009). «Chapter 3: Active Directory». Enterprise Mac Administrator’s Guide. New York City: Apress. ISBN 978-1-4302-2443-3.
  57. ^ «Samba 4.0.0 Available for Download». SambaPeople. SAMBA Project. Archived from the original on 15 November 2010. Retrieved 9 August 2016.
  58. ^ «The great DRS success!». SambaPeople. SAMBA Project. 5 October 2009. Archived from the original on 13 October 2009. Retrieved 2 November 2009.
  59. ^ «RFC 2307bis». Archived from the original on 27 September 2011. Retrieved 20 November 2011.
  60. ^ «Active Directory Administration with Windows PowerShell». Microsoft. Retrieved 7 June 2011.
  61. ^ «Using Scripts to Search Active Directory». Microsoft. 26 May 2010. Retrieved 22 May 2012.
  62. ^ «ITAdminTools Perl Scripts Repository». ITAdminTools.com. Retrieved 22 May 2012.
  63. ^ «Win32::OLE». Perl Open-Source Community. Retrieved 22 May 2012.
  64. ^ «Introducing AWS Directory Service for Microsoft Active Directory (Standard Edition)». Amazon Web Services. 24 October 2017.
  • Microsoft Technet: White paper: Active Directory Architecture (Single technical document that gives an overview about Active Directory.)
  • Microsoft Technet: Detailed description of Active Directory on Windows Server 2003
  • Microsoft MSDN Library: [MS-ADTS]: Active Directory Technical Specification (part of the Microsoft Open Specification Promise)
  • Active Directory Application Mode (ADAM)
  • Microsoft MSDN: [AD-LDS]: Active Directory Lightweight Directory Services
  • Microsoft TechNet: [AD-LDS]: Active Directory Lightweight Directory Services
  • Microsoft MSDN: Active Directory Schema
  • Microsoft TechNet: Understanding Schema
  • Microsoft TechNet Magazine: Extending the Active Directory Schema
  • Microsoft MSDN: Active Directory Certificate Services
  • Microsoft TechNet: Active Directory Certificate Services

Active Directory (AD) – это технология, разработанная компанией Microsoft, предназначенная для централизованного управления пользователями, компьютерами и другими объектами сети. Она представляет собой иерархическую структуру, в которой хранятся учетные записи пользователей, групп, устройств и других объектов. AD используется в корпоративных сетях для обеспечения безопасного управления доступом, аутентификации и авторизации пользователей. В данной статье мы подробно рассмотрим возможности, структуру и основные принципы работы Active Directory.

Основные понятия Active Directory

Active Directory хранит сведения о пользователях, группах, компьютерах и других ресурсах, предоставляя администратору возможность централизованного управления сетью. Ключевые компоненты AD включают следующее:

  • Домен Active Directory – логическая группа объектов (пользователей, компьютеров, групп и других ресурсов), объединенных в единую сеть.
  • Контроллер домена – сервер, на котором установлены службы каталогов Active Directory и который обрабатывает запросы пользователей.
  • Глобальный каталог – хранилище данных, содержащих информацию обо всех объектах сети.
  • Организационные единицы (OU) – контейнеры внутри домена, используемые для группировки объектов и настройки групповой политики.
  • Лес Active Directory – совокупность одного или нескольких доменов, объединенных в иерархическую структуру.
  • Объекты AD – учетные записи пользователей, компьютеры, группы, принтеры и другие элементы сети.

Функции и возможности Active Directory

AD обладает широкими возможностями для управления корпоративной сетью, среди которых:

  • Централизованное управление. Администраторы могут управлять пользователями, компьютерами и ресурсами сети с помощью одного интерфейса.
  • Аутентификация и авторизация. Обеспечение проверки подлинности пользователей и контроля их доступа к ресурсам.
  • Групповые политики. Инструменты, позволяющие устанавливать параметры конфигурации и безопасности для групп пользователей и устройств.
  • Поддержка репликации. Автоматическая синхронизация данных между контроллерами домена.
  • Интеграция с другими сервисами Microsoft. Поддержка Windows Server, Exchange Server, SharePoint и других корпоративных решений.
  • Безопасность и защита данных. Применение технологий шифрования, двухфакторной аутентификации и контроля доступа.

Иерархическая структура и организация данных

Каталог Active Directory представляет собой иерархическую структуру, включающую:

  • Домены – логические подразделения сети, объединяющие пользователей и ресурсы.
  • Дерево доменов – несколько доменов, объединенных отношениями доверия.
  • Лес – группа деревьев доменов, имеющих общую схему и глобальный каталог.
  • Организационные единицы (OU) – используются для структурирования объектов и применения групповых политик.

Основные службы Active Directory

AD включает несколько служб, обеспечивающих функциональность системы:

  • Active Directory Domain Services (AD DS) – основные доменные службы Active Directory, позволяющие управлять пользователями, группами и ресурсами сети.
  • Active Directory Lightweight Directory Services (AD LDS) – облегченная версия службы каталогов, используемая для приложений.
  • Active Directory Federation Services (AD FS) – поддержка единого входа (SSO) и аутентификации пользователей в различных системах.
  • Active Directory Certificate Services (AD CS) – служба сертификатов для управления цифровыми удостоверениями и безопасностью.
  • Active Directory Rights Management Services (AD RMS) – контроль прав доступа к данным и защита информации.

Использование групповых политик

Групповые политики (GPO) позволяют администраторам:

  • Определять права доступа пользователей;
  • Настраивать параметры безопасности компьютеров и пользователей;
  • Управлять обновлениями и установкой программного обеспечения;
  • Ограничивать или разрешать доступ к сетевым ресурсам;
  • Автоматически применять конфигурации ко всем пользователям или отдельным группам.

Настройка и администрирование Active Directory

Настройка Active Directory выполняется с помощью Windows Server и включает следующие шаги:

  • Установка Windows Server и активация ролей AD DS;
  • Настройка контроллера домена и инициализация домена Active Directory;
  • Создание учетных записей пользователей и групп;
  • Настройка групповых политик и прав доступа;
  • Настройка репликации между контроллерами домена;
  • Мониторинг и аудит безопасности.

Инструменты для работы с Active Directory

Для управления AD используются различные инструменты, такие как:

  • Active Directory Users and Computers (ADUC) – управление учетными записями и объектами AD.
  • Group Policy Management Console (GPMC) – настройка и администрирование групповых политик.
  • Active Directory Administrative Center (ADAC) – улучшенный интерфейс для администрирования.
  • PowerShell для Active Directory – автоматизация задач управления AD.

Безопасность и защита данных в Active Directory

Безопасность в AD обеспечивается за счет следующих аспектов:

  • Использование многофакторной аутентификации;
  • Применение ролевой модели доступа;
  • Регулярный аудит учетных записей и прав доступа;
  • Настройка брандмауэров и антивирусных решений;
  • Контроль изменений и мониторинг активности пользователей.

Заключение

Active Directory (AD) является критически важной частью инфраструктуры корпоративных сетей. Он обеспечивает централизованное управление пользователями, компьютерами и ресурсами, что делает его основным инструментом для организации и администрирования корпоративных систем. AD работает на основе LDAP (протокол Lightweight Directory Access Protocol), предоставляя механизм хранения и поиска различных типов атрибутов, связанных с каждым пользователем или ресурсом. Он поддерживает удаленное управление, позволяя администраторам настроить доступ и права в любом месте, обеспечивая безопасность и защищенность через встроенные правила и политики. AD также выполняет автоматическое обслуживание, включая резервное копирование и восстановление данных, что особенно важно в случае сбоев или потери информации.

Кроме того, AD обеспечивает интеграцию с другими системами, такими как DNS для обеспечения доступа к ресурсам по их именам, а также с операционной системой Windows для управления правами и разрешениями. Все эти функции делают Active Directory необходимым инструментом для любой организации, стремящейся обеспечить высокий уровень безопасности и эффективного управления своей сетью. Подробнее об Active Directory можно узнать на официальном сайте Microsoft или в специализированных технических статьях.

Остались вопросы?

Оставьте заявку и наш менеджер свяжется с Вами в течение 15 минут

Active Directory Domain Services (AD DS) is a server role in Active Directory that allows admins to manage and store information about resources from a network, as well as application data, in a distributed database.

AD DS helps admins manage network elements — both computing devices and users — and reorder them into a custom hierarchical structure. AD DS also integrates security by authenticating logons and controlling access to directory resources.

Active Directory’s key services.

How is Active Directory Domain Services used?

Active Directory is a directory service that runs on Microsoft Windows Server. It is used for identity and access management. AD DS stores and organizes information about the people, devices and services connected to a network. AD DS serves as a locator service for those objects and as a way for organizations to have a central point of administration for all activity on the corporate network.

AD DS is used in on-premises Windows environments, and Microsoft Azure AD DS is used in cloud-based Windows environments. They can be used together in hybrid cloud environments.

How does AD DS work?

AD DS is the core component of Active Directory that enables users to authenticate and access resources on the network. Active Directory organizes objects into a hierarchy, which lets various Domain Services connect with them and users access or manage them. The hierarchical structure includes the following:

  • Domains. A group of objects, such as users or groups of devices, that share the same AD database makes up a domain.
  • Organizational units. Within a domain, organizational units are used to organize objects within the domains.
  • Active Directory trees. Multiple domains grouped together in a logical hierarchy make up an AD tree. The bonds between domains in a tree are known as «trusts.»
  • Active Directory forests. This AD functional level is made up of multiple trees grouped together. Trees in an AD forest share trusts, just like domains in a tree share trusts. Trusts enable constituent parts of a tree or forest to share things like directory schemas and configuration specifications.
diagram showing domain forest configuration

Trust forms the relationship between domains in a forest, which are composed of domain trees.

What services does AD DS provide?

Active Directory covers a range of services. AD Domain Services is the main service that encompasses these five services.

Domain Services

Domain Services stores centralized directory information and lets users and domains communicate. When a user attempts to connect to a device or resource on a network, this service provides login authentication, verifying the user’s login credentials and access permissions.

Lightweight Directory Services (LDS)

AD LDS is similar to Domain Services, but it uses Lightweight Directory Access Protocol (LDAP), which has fewer restrictions. AD LDS enables cross-platform capabilities that, for instance, let Linux-based computers function on the network.

Active Directory Federation Services (AD FS)

AD FS provides single sign-on authentication, enabling users to sign in once to access multiple applications in the same session.

Rights Management

This service controls data access policies and provides access rights management. For example, Rights Management determines which folders users can access.

Certificate Services

Certificate Services allows the domain controller to create and manage digital certificates, signatures and public key cryptography.

What are the benefits of Active Directory Domain Services?

The four key benefits of AD DS include the following:

  1. Hierarchical structure. This is the main benefit of AD DS, providing the organizational structure for the information contained in Active Directory.
  2. Flexibility. AD DS gives users flexibility in determining how data is organized on the network. It simplifies administrative tasks by centralizing services like user and rights management and provides some security. Users can access Active Directory from any computer on the network.
  3. Single point of access. Domain Services creates a single point of access to network resources. This lets IT teams collaborate more efficiently and limit the access points to sensitive resources.
  4. Redundancy. AD DS has built in replication and redundancy If one domain controller fails, another automatically takes over its responsibilities.

What are Active Directory Domain Services terms to know?

Some common AD DS related terms and concepts include the following:

  • Global catalog. The Global catalog holds all AD DS objects. Administrators can find directory information — such as a username — across any domain.
  • LDAP. This protocol provides the language that servers and clients within the directory use to communicate with each other.
  • Multi-master replication. A function that ensures all domain controllers on a network are updated with any changes made to Active Directory.
  • Objects. These are the pieces of information that Active Directory organizes. There are two types of objects: Container objects are organizational units, such as forests and trees, that hold other objects inside of them. Leaf objects represent things like users, computers and other devices on the network.
  • Query and index mechanism. This mechanism enables users to search the global catalog for directory information.
  • Schema. The schema is a set of rules a user establishes to define classes of objects and attributes in the directory. These rules also dictate the characteristics of object instances and naming formats.
  • Sites. The physical groupings of IP subnets. They enable the easy replication of information among the domain controllers and the deployment of group policies.

What role do domain controllers play in AD DS?

Domain controllers are physical servers that host AD DS and newer Windows services like Kerberos Key Distribution Center, Netlogon, Intersite Messaging and Windows Time. Active Directory requires at least one domain controller to respond to authentication requests and verify users on the network.

Domain controllers also replicate the AD DS database inside an AD forest. Changes made in a directory on one domain controller — such as a password change or account deletion — replicate to other domain controllers on the network.

Learn more about Active Directory and how to troubleshoot common issues and find out how to handle replication problems.

This was last updated in July 2021


Continue Reading About Active Directory Domain Services (AD DS)

  • Explore the benefits of Azure AD vs. on-prem AD
  • Construct a solid Active Directory password policy
  • How does AD DS differ from Microsoft Azure Active Directory?
  • Securing Active Directory also involves good backup practices
  • Set up users with key PowerShell Active Directory commands

Dig Deeper on IT operations and infrastructure management

  • What is Active Directory (AD)?

    By: Rahul Awati

  • What is Active Directory Domain (AD Domain)?

    By: Rahul Awati

  • 15 server and networking interview questions and answers

    By: Kaitlin  Herbert

  • Active Directory functional levels

    By: Stephen Bigelow

Active Directory Domain Services

Active Directory Domain Services (AD DS) is nothing but a core function in Microsoft’s Active Directory, through which users can build a centralized, well-integrated, and scalable Windows network.

System admins can store, monitor, and manage application data and resource information in a systematic hierarchy structure. This logical structure comprises the AD forest, its Domains, and their respective Organizational Units (OUs).

Admins can efficiently handle a network’s users and computers and organize them into a distributed database. Moreover, AD DS also features security integrations such as limiting access to directory resources, SSO, LDAP, authorizing logins, security certificates, and rights management.

To understand AD DS better, let’s first look into IAM (Identity and Access management) thoroughly.

What is IAM?

The launch of the LDAP protocol really turned the tables for the IAM industry, as it served for two giants viz.

OpenLDAP and Microsoft Active Directory solutions along with other smaller ones. Both these solutions became widely popular amongst enterprises across the globe as reliable identity providers.

What Exactly Does an Identity Provider Do?

Identity providers do the job of creating a well-integrated central store for an organization’s users and data.

In the IdP, all the user accounts are securely stored along with resource information. The resources are interrelated to the user identities that utilized them.

Not just that, the resources such as networks, applications, systems, etc. are also restrained for a specific user based on their role.

For Active Directory Domain services, this process was carried out for Windows-based networks and resources. As a user logs-in into their computer, the AD DS would provide access to resources that the user needs and is authenticated to use.

What is Active Directory?

Active Directory is Microsoft’s technology to be used in Windows Server space. It is a logical hierarchy structure that is able to share database information to secure, manage, and easily locate the device and network resources.

Not only does it offer full-scale authorization and authentication core functions, but also provides a framework for numerous other services. AD makes use of Windows Servers OS and it is an LDAP database in itself containing networked elements.

To offer directory services to large-scale, complex environments, Active Directory was readily introduced in Windows 2000.

The first and foremost role of AD is to authenticate users in the domain network. AD stores objects such as computers, groups, file shares, file permissions, printers, and group policies.

Plus, it also centralizes security elements as all the users’ accounts and their respective passwords are stored in a single location.

IT admins can create, restrict or remove users, set up group policies, and even allow users to change their passwords. All of these functions determine how users will interact in the domain environment.

In short, AD DS is a well-integrated, centralized framework for domain management. Each domain becomes an element of Active Directory Forest, but it can also have more than one domain systematically organized into logical units.

Without AD, admins will have to create local users on every computer and reset passwords for each one of them on their PC.

Types of Active Directory Objects:

Active Directory Objects can be differentiated into two types:

  • Container Objects
    These are the main objects that also consist of other objects within them such as Domains, Forests, Trees, and Organizational Units.
  • Leaf Objects
    These objects do not comprise other objects inside them, for example, computers, printers, peripheral devices, users, etc.

Key Elements of Active Directory Domain Services:

Active Directory Domain Services comprise of:

  • Global Catalog
    Consists of information regarding directory objects. With this, system admins and users can easily find the directory information, no matter which domain it is contained within. For example, user names, contacts, and so on.
  • Schema
    Is a set of rules defining classes of objects and their properties stored in the directory along with the format of their names and limits on objects’ instances.
  • Query and Index mechanism with the help of which network users can easily publish or find objects and their attributes in the AD.
  • Replication service includes the distribution of directory data across a network. This replication is carried out by domain controllers within a domain, each having a copy of directory data for their domain. Any changes done to the directory information is automatically replicated to domain controllers within a domain, thus they have the same catalog and schema. AD makes use of multiple domain controllers for fault tolerance, the balance of the load, and other crucial reasons. For this, every domain controller within a domain needs to have a copy of its AD database. This is where the replication service comes in. Know that domain controllers from different domains shall not replicate to one another.
  • Sites: This is the representation of Windows’ network topology.
  • Lightweight Directory Access Protocol (LDAP): LDAP is a protocol which allows the AD to communicate with other LDAP-based directory services within the network.

Which Services are included in Active Directory Domain Services?

AD DS consists of various services such as:

  • Domain Services:
    These are core services which handle data centralization, manage login authentication, search functionality and allow seamless communication between users within a domain.
  • Lightweight Directory Services:
    These services provide support for directory-enabled applications with the help of the LDAP protocol.
  • Rights Management:
    This feature is all about information rights such as restricting access to personal information of users and encrypting confidential data.
  • Directory Federation Services:
    DFS offers SSO (Single-Sign-On) functionality to the users for safe authentication. This feature is most helpful when communicating with multiple web applications in a single session.
  • Certificate Services:
    This feature lets you create, share and manage security certificates. These certificates ensure security and privacy by encrypting data sent across the network.

Role of Domain Controllers in Active Directory Domain Services:

Basically, a domain controller (DC) is nothing but a server in the Windows network that provides user access to domain resources. Its main objective is to authorize and authenticate users in a network based on their names and passwords.

Domain Controllers hosts AD DS as well as other services such as:

  • NetLogon:
    Its aim is to authenticate the login credentials of users in the domain network.
  • KDS:
    Kerberos Key Distribution Center is a service used to issue, authenticate, and carry out the encryption of Kerberos tickets. It will authenticate users when using the Kerberos protocol. The service features TCS (Ticket Granting Server) and an Authenticating Server.
  • IsmServ (Intersite Messaging):
    This service assists the exchange of data between PCs in a Windows networked environment.
  • W32time service:
    Windows time or W32time service utilizes NTP (Network Time Protocol) for syncing date and time for all PCs within a networked domain. The clock synchronization on computers is important for Kerberos to work properly.

Let’s see a quick tutorial on how to install Active Directory Domain Services on Windows Server:

  • Opening Server Manager: Press the “Windows” icon on your keyboard and type “Server Manager” in the search box. The application will open.
  • Adding Roles and Features: In the Server Manager window, right-click on “Manage” and select “Add Roles and Features” option. Once the wizard opens, click on “Next”.
  • Select Installation Type: Clicking “Next” will open the Installation Type window where you need to select “Role-based or feature-based installation” option. Then click on “Next”.
  • Server Selection: Here comes the “Server Selection” click on the server you want to install AD DS on and then click on “Next”.
  • Server Roles: In this window, you will see many “Roles” options. Tick on “Active Directory Domain Services”.
  • Add Features: Right after, the “Add Roles and Features” wizard will open up. Click on the “Add Features” button and then hit “Next”.
  • Select Features: Immediately the “Select Features” section will open up. Simply click on “Next”.
  • Installation of AD DS: Now the main window of AD DS installation opens, click on “Next”.
  • Confirmation Window: Confirmation window displays what all will be installed on the server. Once you read it all, click on “Install”.
  • Promote to Domain Controller: After installation, go to “Server Manager” and you will see a yellow triangle notification icon right beside the “Manage” tab. Click on it and choose “Promote this server to a domain controller”.
  • Add a New Forest: This will open AD DS Configuration Wizard. Click on “Add a new forest” and type your enterprise’s root domain name and hit “Next”.
  • Domain Controller Options: On the next page, keep all the default boxes checked and type in your DSRM password. Click “Next”.
  • DNS Options: In the DNS Options page, you might see an error message on the top. Ignore it and hit “Next”.
  • NetBIOS domain name: Here you can change the domain name or leave the default name as it is. Hit “Next”.
  • Paths: Keep paths defaults as it is, and click “Next”.
  • Review Selections: In this page, check all the options you’ve selected so far, and hit “Next”.
  • Prerequisites Check: In this window, all the prerequisites will be validated before the installation of AD DS. If any errors pop up, look at previous steps, and fix them. Click “Install”.
    Once done, your server will reboot and then you will be able to log into the domain with DSRM password input you’ve set up in step 12.

Wrap Up:

Active Directory Domain Services is one of the best terminologies used to enhance the Windows server and make it stand out in enterprises.

It seamlessly adapts with the majority of Microsoft solutions, making it easier for users to do their operations. As you install AD DS, you can easily manage it through the Active Directory Administrative Center. Hope this guide was insightful for you to read!

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Windows 10 путь к автозагрузке
  • Galaxy on fire 2 для windows 10
  • Rufus для windows vista
  • Rhino для windows 7
  • Tiny dhcp server windows