安装域控制器后未安装“Active Directory 用户和计算机”

安装域控制器后未安装“Active Directory 用户和计算机”

我安装了域控制器并将其附加到我的域。一切运行正常,但“用户和计算机”和“站点和服务”等未安装...(所有管理工具)

额外信息:我使用以下脚本安装了 ADDS:

$user = read-host "域的域\管理员" $SecurePassword = read-host "输入域密码" -AsSecureString $domaincredentials = New-Object System.Management.Automation.PSCredential -ArgumentList` $user, $SecurePassword

安装-WindowsFeature AD-Dom​ain-Services $domain = “domain.here”​ $sitename = “sitenamehere”

安装-ADDSDomainController -InstallDns:$true -域名“$domain”`-NoRebootOnCompletion:$false -站点名称“$SiteName”-Force -Credential $domaincredentials​

谢谢!

答案1

您需要做的就是再次加载服务器管理器模块,然后安装 RSAT 工具以配合您刚刚完成的 AD DS 安装:

Import-Module ServerManager
Install-WindowsFeature -Name RSAT

就这么简单:)

或者,您可以在 Install-WindowsFeature 命令中使用 -IncludeManagementTools 开关:

Install-WindowsFeature AD-Dom​ain-Services $domain = "domain.here"​ $sitename = "sitenamehere" -IncludeManagementTools

相关内容