Set-GPInheritance
Blocks or unblocks inheritance for a specified domain or organizational unit.
Syntax
Set-GPInheritance
[-Target] <String>
-IsBlocked <BlockInheritance>
[-Domain <String>]
[-Server <String>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
The Set-GPInheritance
cmdlet blocks or unblocks inheritance for a specified domain or
organizational unit (OU).
GPOs are applied according to the Group Policy hierarchy in the following order: local GPO, GPOs linked to the site, GPOs linked to the domain, GPOs linked to OUs. By default, an Active Directory container inherits settings from GPOs that are applied at the next higher level in the hierarchy. Blocking inheritance prevents the settings in GPOs that are linked to higher-level sites, domains, or organizational units from being automatically inherited by the specified domain or OU, unless the link for a GPO is enforced.
You use the Target parameter to specify the Lightweight Directory Access Protocol (LDAP) distinguished name of the domain or OU, and use the IsBlocked parameter to specify whether to block or unblock inheritance.
Examples
Example 1: Block inheritance for a OU in a domain
Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked Yes
Name : MyOU
ContainerType : OU
Path : ou=MyOU,dc=contoso,dc=com
GpoInheritanceBlocked : Yes
GpoLinks : {TestGPO-1, TestGPO-2}
InheritedGpoLinks : {TestGPO-1, TestGPO-2}
This command blocks inheritance for the OU named MyOU in the contoso.com
domain. GPOs that are
linked to higher-level sites or domains, or to OUs that are parent OUs of the OU named MyOU
are
not applied, unless their links are enforced, when Group Policy is processed for the OU on the
client.
Because inheritance is blocked, only GPOs that are linked directly to the MyOU
, and those that are
enforced at higher-level containers, appear in the InheritedGpoLinks list.
Example 2: Unblock inheritance for a domain
Set-GPInheritance -Target "dc=northwest,dc=contoso,dc=com" -IsBlocked No
This command unblocks inheritance for the northwest.contoso.com
domain. GPOs linked to
higher-level sites or domains are applied to this domain when Group Policy is processed on the
client.
Example 3: Unblock inheritance for an OU in a domain
Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked No
Name : MyOU
ContainerType : OU
Path : ou=MyOU,dc=contoso,dc=com
GpoInheritanceBlocked : No
GpoLinks : {TestGPO-1, TestGPO-2}
InheritedGpoLinks : {TestGPO-1, TestGPO-2, Default Domain Policy}
This command unblocks inheritance for the OU named MyOU
in the contoso.com
domain. GPOs that are
linked to higher-level sites or domains, or to OUs that are parent OUs of the OU named MyOU
, are
applied when Group Policy is processed for the OU on the client.
Because inheritance is not blocked, GPOs that are inherited from higher-level containers appear in the InheritedGpoLinks list (together with GPOs that are linked directly to the OU). For instance, the Default Domain Policy GPO is linked at the domain level.
Parameters
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Domain
Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain.
For the Set-GPInheritance
cmdlet, this is typically the domain of the Active Directory container
(domain or OU) for which you want to block or unblock inheritance. If the domain for the cmdlet is
different than the domain of the container, a trust must exist between the two domains.
If you do not specify the Domain parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help.
If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer.
You can also refer to the Domain parameter by its built-in alias, DomainName. For more information, see about_Aliases.
Type: | String |
Aliases: | DomainName |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-IsBlocked
Indicates whether to block inheritance for the domain or OU. You must specify Yes
or No
.
The following values are permitted for this object type.
Type: | BlockInheritance |
Accepted values: | No, Yes |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Server
Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name.
If you do not specify the name by using the Server parameter, the primary domain controller (PDC) emulator is contacted.
You can also refer to the Server parameter by its built-in alias, DC.
Type: | String |
Aliases: | DC |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Target
Specifies the domain or the OU for which to block or unblock inheritance by its LDAP distinguished
name. For instance, the MyOU
organizational unit in the contoso.com
domain is specified as
ou=MyOU,dc=contoso,dc=com
.
You can also refer to the Target parameter by its built-in alias, Path.
Type: | String |
Aliases: | Path |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Microsoft.GroupPolicy.Som
This cmdlet takes an object that represents a domain or an OU as input.
Outputs
Microsoft.GroupPolicy.Som
This cmdlet returns an object that represents the domain or OU after the operation is applied. The properties of this object that are displayed by default describe the Group Policy inheritance information for the domain or OU. The GpoInheritanceBlocked property indicates whether inheritance is blocked.
Notes
GPO links that are enforced cannot be blocked. This cmdlet should be used sparingly. Casual use of this cmdlet can complicate troubleshooting.
You can use the Domain parameter to explicitly specify the domain for this cmdlet.
If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. This domain is typically the domain of the user that is running the session. For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. However, computer startup and shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined.