Skip to main content

The operation failed The specified user already exists

Exact Error: the operation failed because the attempt to join this computer to the domain failed the specified account already exists

Solution:  In my existing AD, I went under "Domain Controllers" OU and saw an entry of the host name of the second DC that i have been unsuccessfully attempted before.  I deleted/demoted the second DC from the entry, and went back to the second DC and re-initiated the DCPROMO.  It is now completing the wizard.

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...