Posted On March 31, 2019

Windows Domain Controller restore Procedure

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Windows Domain Controller restore Procedure
1. Terminate instance on AWS or Delete VM from VMWare
2. Perform these steps on a Live Windows 2003 Domain Controller with an Enterprise Admin account
MMC >> Active Directory Sites and Services >> Sites >> Amazon-Web-Services >> Servers >> right-click dead domain controller, select Properties >> Object tab, uncheck Protect object from accidental deletion >> OK >> right-click NTDS Settings, select Properties >> General tab, uncheck Global Catalog >> Object tab, uncheck Protect object from accidental deletion >> OK
MMC >> Active Directory Users and Computers >> right-click [correct domain name], select Find >> change Find drop-down menu to Computers >> type in [dead DC computer name] >> Find Now >> right-click object, Delete >> OK
MMC >> DNS >> [DNS Server] >> Forward Lookup Zones >> [domain name] >> browse through to locate the Host (A) and/or CNAME records corresponding to dead DC >> right-click object, Delete >> OK
CMD >> NTDSUTIL >> metadata cleanup >> connections >> connect to [PDC name] >> q >> select operation target >> list domains >> select domain 0 [if there’s only 1 domain in this forest] >> list sites >> select site [number corresponding to correct site] >> list servers in site >> select server [number corresponding to dead DC] >> q >> remove selected server

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Rename Hyper-V Object and Clustered Role Resource

$oldName='testWindows' $newName='server01.intranet.kimconnect.com' # Rename Hyper-V Clustered Resource: Guess VM $vm=Get-clustergroup -Cluster (get-cluster).Name -Name $oldName $vm.Name=$newName…

How To Install Graylog in a Kubernetes Cluster Using Helm Charts

The following narrative is based on the assumption that a Kubernetes (current stable version 20.10)…

How to Clone Virtual Machine in ESXi without using vSphere Web Client (vCenter)

Update: pure command-line updated article is available in this new blog. SSH into ESXi host…