- Active Directory Administration Cookbook
- Sander Berkouwer
- 62字
- 2021-06-24 14:42:32
Using Windows PowerShell
To create an Active Directory site using the Active Directory module for Windows PowerShell, use the New-ADReplicationSite PowerShell cmdlet. An example of the simplest lines of PowerShell to achieve this goal looks like this:
Import-Module ActiveDirectory
New-ADReplicationSite -Name "Site2"
You can verify your change by listing the Active Directory sites:
Import-Module ActiveDirectory
Get-ADReplicationSite -Filter * | Select Name