使用powershell启动Active Directory轻型目录服务

Use powershell to start Active Directory Lightweight Directory Service

Windows10 专业版和 PowerShell v5.1

我使用 Enable-WindowsOptionalFeatures cmdlet 启用 Active Directory 轻型目录服务。

当我尝试使用 Set-ADDomain 时,它不起作用,因为 Active Directory Web 服务 不是 运行。我知道我可以使用 ADLDS 设置向导来启动此服务。有什么cmdlet可以做到吗?

sc [\dc.contoso] start adws

在提升的命令提示符下可以做到这一点。

Get-Service -Name adws [-ComputerName dc.contoso] | Start-Service

是Powershell挂件。

简而言之:

不,没有 "the special cmdlet to start ADWS",但使用 PowerShell(或 cmd)启动该服务很容易。

启用 windows 功能 Active Directory 轻型目录服务后,尚未添加任何 AD LDS 实例。您可以通过 运行ning %systemroot%\ADAM\adaminstall 添加 AD LDS 实例,如果您需要编写脚本,也可以 运行 在静默模式下添加它。

有关如何添加 AD LDS 实例的详细信息,请参阅https://technet.microsoft.com/en-us/library/cc816778(v=ws.10).aspx and https://technet.microsoft.com/en-us/library/cc816774(v=ws.10).aspx

你说的命令Set-ADDomain是要和AD DS域一起使用的,跟AD LDS不是一回事