我有一台 Windows Server 2016 Datacenter Core,我正在尝试将其提升为附加域控制器。我使用以下命令:
Install-ADDSDomainController -CreateDnsDelegation:$false -DatabasePath 'C:\Windows\NTDS' -DomainName 'testdomain.net' -InstallDNS:$false -LogPath 'C:\Windows\NTDS\' -NoGlobalCatalog:$true -SysVolPath 'C:\Windows\SYSVOL' -NoRebootOnCompletion:$false -Force:$true -Credential (Get-Credential TESTDOMAIN\Administrator)
当我运行它时,出现此错误:
Install-ADDSDomainController : Verification of prerequisites
for Domain Controller promotion failed. The folder C:\Windows\NTDS\ is
not valid. Specify a valid path, including drive letter. For
example: C:\NTDS.
At line:1 char:1
+ Install-ADDSDomainController -CreateDnsDelegation:$false
-DatabasePat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-ADDSD
omainController], TestFailedException
+ FullyQualifiedErrorId : Test.VerifyDcPromoCore.DCPromo.G
eneral.37,Microsoft.DirectoryServices.Deployment.PowerShel
l.Commands.InstallADDSDomainControllerCommand
我也尝试创建文件夹,但仍然出现该错误。我甚至使用了 C:\NTDS(按照错误提示我这样做),但还是出现同样的错误。
有任何想法吗?
答案1
我刚遇到这个问题。这是 后面的反斜杠-LogPath 'C:\Windows\NTDS\'
。你只需要-LogPath 'C:\Windows\NTDS'
。