-
Notifications
You must be signed in to change notification settings - Fork 141
ADDomainControllerProperties
dscbot edited this page Aug 24, 2023
·
3 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
IsSingleInstance | Key | String | Specifies the resource is a single instance, the value must be 'Yes'. | Yes |
ContentFreshness | Write | UInt32 | Specifies the Distributed File System Replication (DFSR) server threshold after the number of days its content is considered stale (MaxOfflineTimeInDays). Once the content is considered stale, the Distributed File System Replication (DFSR) server will no longer be able to replicate. |
This resource enforces the single instance properties of a domain controller. Properties that must always have a value, but the value can be changed.
- Target machine must be running Windows Server 2008 R2 or later.
This configuration will set the content freshness to 100 days.
Configuration ADDomainControllerProperties_SetContentFreshness_Config
{
Import-DscResource -ModuleName ActiveDirectoryDsc
node localhost
{
ADDomainControllerProperties 'ContentFreshness'
{
IsSingleInstance = 'Yes'
ContentFreshness = 100
}
}
}
- ADComputer
- ADDomain
- ADDomainController
- ADDomainControllerProperties
- ADDomainDefaultPasswordPolicy
- ADDomainFunctionalLevel
- ADDomainTrust
- ADFineGrainedPasswordPolicy
- ADForestFunctionalLevel
- ADForestProperties
- ADGroup
- ADKDSKey
- ADManagedServiceAccount
- ADObjectEnabledState
- ADObjectPermissionEntry
- ADOptionalFeature
- ADOrganizationalUnit
- ADReadOnlyDomainControllerAccount
- ADReplicationSite
- ADReplicationSiteLink
- ADReplicationSubnet
- ADServicePrincipalName
- ADUser
- Home
- WaitForADDomain