Managed Service AccountsVDC does not support the stand-alone Managed Service Accounts (sMSA) that are introduced in Windows Server 2008 R2. An sMSA cannot exist on more than one computer at the same time. Therefore, Windows detects sMSAs and prevents cloning.
For more information about sMSAs, see the following web pages:
Group Managed Service Accounts (gMSAs) can exist on multiple computers, and cloning does not block gMSAs. Nevertheless, you must make sure that the new clone computer is authorized to use the gMSA. If authorization is provided through group membership, gMSA works automatically on a clone. This occurs because all group memberships are copied during cloning. However, if the gMSA authorization comes through the direct computer account, you must use the
Set-AdServiceAccount Windows PowerShell cmdlet together with the following argument to authorize the clone:
-PrincipalsAllowedToRetrieveManagedPassword
For more information about gMSA, go to the following Microsoft TechNet websites:
Windows PowerShell cmdletsTo uninstall the sMSA from the source computer, do not use the
Remove-ADComputerServiceAccount cmdlet. That cmdlet deletes Managed Service Accounts from Active Directory Domain Services and would cause an outage on the source computer. Instead, use the following cmdlet to temporarily uninstall the sMSA from the source computer:
Uninstall-AdServiceAccount
To temporarily uninstall the sMSA from the source computer, follow these steps:
- On the source computer that is to be cloned, run the following Windows PowerShell cmdlet:
Uninstall-AdServiceAccount -identity <name of the managed service account>
- Shut down the source computer, and then copy the source computer for cloning.
- Start the source computer, and add the MSA back by using the following cmdlet:
Install-AdServiceAccount -identity <name of the managed service account>
Note If you already tried to clone the domain controller and were blocked, run the Uninstall-AdServiceAccount cmdlet on the clone while Directory Services Repair Mode (DSRM) is running. Then, remove the DSRM safe boot option, and retry cloning. To do this, run the following command:Bcdedit.exe /deletevalue
safeboot
Shutdown.exe /r /t 0