Offcanvas

When Should We Call You?

Edit Template

Domain controller installation with Power Shell

Spread the love

Installing Active Directory using PowerShell involves several steps, including installing the necessary Windows features and promoting the server to a domain controller.

Here’s a detailed guide:

Ports Pre-requisite:

Port 53 TCP/UDP — DNS

Port 88 TCP/UDP — Kerberos

Port 336 TCP/UDP — LDAPS

Port 389 TCP/UDP — LDAP (Lightweight Directory Access Protocol)

**********************************************************************************************************************************

Configure TCP/IP

Uncheck IPv6 on TCP/IP settings in Windows Server, you typically go through the network adapter properties. Here’s how you can do it:

PowerShell
				Get-NetAdapterBinding
			
PowerShell
				Get-NetAdapterBinding -Name "Ethernet"
			
PowerShell
				Disable-NetAdapterBinding -Name "Ethernet0" -ComponentID ms_tcpip6 -Confirm:$false
			
PowerShell
				$IPAddress = "10.1.0.4"
$SubnetMask = "255.255.255.0"
$Gateway = "10.1.0.1"

			
PowerShell
				New-NetIPAddress -InterfaceAlias "Ethernet" -IPAddress $IPAddress -PrefixLength 24 -DefaultGateway $Gateway
			

Set DNS Servers:

PowerShell
				$PrimaryDNS = “168.63.129.16”
$SecondaryDNS = "8.8.8.8"

			
PowerShell
				Set-DnsClientServerAddress -InterfaceAlias "Ethernet" -ServerAddresses $PrimaryDNS,$SecondaryDNS
			

Verify TCP/IP Setting

To verify that the settings have been applied correctly, you can use PowerShell cmdlets to check the network configuration:

ipconfig /all

Step 1: Install Active Directory Domain Services (AD DS)

Open PowerShell as Administrator:

Right-click the PowerShell icon and select “Run as Administrator.”

Install the AD DS Feature:

Execute the following command to install the AD DS role:

PowerShell
				Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools 
			

Step 2: Configure a New Active Directory Forest

Promote the Server to a Domain Controller:

Replace TIC.local with your desired domain name.

Entre the DSRM Password (The DSRM password is a unique password used to access the Directory Services Restore Mode in Windows Server’s Active Directory domain services.):

PowerShell
				Import-Module ADDSDeployment
Install-ADDSForest -DomainName "Tic.local" -InstallDNS

			
PowerShell
				Import-Module ADDSDeployment
Install-ADDSForest -DomainName "Tic.local" -InstallDNS
SafeModeAdministratorPassword: ************  
Confirm SafeModeAdministratorPassword: ************
			

Step 3: Verify Installation

Check Installation Status : After the server reboots, open PowerShell and run:

PowerShell
				Get-Service adws,kdc,netlogon,dns
			

Check DNS Configuration: 

Open PowerShell as Administrator.

Run the following command to check DNS settings

Step 4: Optional Post-Installation Steps

Create Users and Groups:

Create a new user:

PowerShell
				New-ADUser -Name "Alex Due" -GivenName Alex -Surname Due -SamAccountName adue -UserPrincipalName adue@tic.local -Path "CN=Users,DC=Tic,DC=local" -AccountPassword (ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true
			

Create a new group:

PowerShell
				New-ADGroup -Name "SalesGroup" -GroupScope Global -Path "CN=Users,DC=Tic,DC=local"
			

Add user to the group:

PowerShell
				Add-ADGroupMember -Identity "SalesGroup" -Members "adue"

			

est Domain Controller Functionality
Join a test machine to the “Tic.local” domain to ensure that domain controller functionality is operational.


Spread the love

Leave a Reply

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Popular Articles

Most Recent Posts

  • All Post
  • Active Directory
  • azure
  • Azure Cloud
  • Azure Infrastructure
  • Azure Patch
  • Azure Security
  • Cloud
  • Cloud Computing
  • Exchange Server
  • Manage M365
  • Messaging
  • Microsoft
  • Microsoft 365
  • Microsoft Purview
  • News
  • Patch Tuesday
  • Request Call
  • Security
  • Security M365
  • Websites
  • Windows Server
  • Windows Server Patch

Information

Disclaimer

Privacy Statement

Terms of Service

ThankYou