使用脚本安装Active Directory服务并创建Forest

Posted bluishglc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用脚本安装Active Directory服务并创建Forest相关的知识,希望对你有一定的参考价值。

文章目录

通常我们可以在Windows上手动完成Active Directory服务的安装与Forest的创建工作,这里有一篇详实的文章可供参考:《Installing Active Directory on Windows Server 2012 R2》。但是,有时候,我们需要将这些操作变成脚本,以便可以自动执行,本文将介绍如何使用powershell脚本完成这些操作。

环境说明

本操作涉及如下环境信息:

Windws AD的Domain NameEXAMPLE.COM
进行安全模式时管理员账号使用的密码(Directory Services Restore Mode密码)Admin234!

脚本内容

# 安装Active Directory服务
Install-windowsfeature -name AD-Domain-Services -IncludeManagementTools

# 创建Forest, 命令执行成功之后会自动重启服务器,虽然使用-NoRebootOnCompletion:$true可以规避自动重启,但是如果要正常使用AD服务,还是要重启服务器。
Install-ADDSForest -DomainName example.com -SafeModeAdministratorPassword (ConvertTo-SecureString 'Admin1234!' -AsPlainText -Force) -DomainMode WinThreshold -DomainNetbiosName EXAMPLE -ForestMode WinThreshold -DatabasePath "C:\\Windows\\NTDS" -LogPath "C:\\Windows\\NTDS" -SysvolPath "C:\\Windows\\SYSVOL" -CreateDnsDelegation:$false -InstallDns:$true -NoRebootOnCompletion:$false -Force:$true

参考文章

https://mikefrobbins.com/2018/11/29/use-powershell-to-create-a-new-active-directory-forest-on-windows-2019-server-core-installation-no-gui/

https://docs.microsoft.com/en-us/powershell/module/addsdeployment/install-addsforest?view=windowsserver2022-ps

以上是关于使用脚本安装Active Directory服务并创建Forest的主要内容,如果未能解决你的问题,请参考以下文章

使用脚本安装Active Directory服务并创建Forest

如何使用可用性集配置两个不同区域中的 VM 并安装 Active Directory 域服务

Active Directory 域服务安装与测试

Windows 2012 Active Directory 域服务安装

如何通过Powershell在域计算机上查询Active Directory而不在客户端计算机上安装RSAT工具

sql 使用MS SQL链接服务器连接到Active Directory并使用OpenQuery进行查询