-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy path2-ADDomainTrust_ExternalInboundTrustWithOptInToRecreate_Config.ps1
More file actions
55 lines (49 loc) · 1.54 KB
/
2-ADDomainTrust_ExternalInboundTrustWithOptInToRecreate_Config.ps1
File metadata and controls
55 lines (49 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<#PSScriptInfo
.VERSION 1.0.1
.GUID ab9a3c8a-b63a-4a54-94d7-807da3e799e4
.AUTHOR DSC Community
.COMPANYNAME DSC Community
.COPYRIGHT DSC Community contributors. All rights reserved.
.TAGS DSCConfiguration
.LICENSEURI https://github.com/dsccommunity/ActiveDirectoryDsc/blob/main/LICENSE
.PROJECTURI https://github.com/dsccommunity/ActiveDirectoryDsc
.ICONURI https://dsccommunity.org/images/DSC_Logo_300p.png
.RELEASENOTES
Updated author, copyright notice, and URLs.
#>
#Requires -Module ActiveDirectoryDsc
<#
.DESCRIPTION
This configuration will create a new one way inbound trust between two
domains, and allows the trust to recreated if it should have the wrong
trust type.
#>
Configuration ADDomainTrust_ExternalInboundTrustWithOptInToRecreate_Config
{
param
(
[Parameter(Mandatory = $true)]
[System.String]
$SourceDomain,
[Parameter(Mandatory = $true)]
[System.String]
$TargetDomain,
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$TargetDomainAdminCred
)
Import-DscResource -module ActiveDirectoryDsc
node localhost
{
ADDomainTrust 'Trust'
{
Ensure = 'Present'
SourceDomainName = $SourceDomain
TargetDomainName = $TargetDomain
TargetCredential = $TargetDomainAdminCred
TrustDirection = 'Inbound'
TrustType = 'External'
AllowTrustRecreation = $true
}
}
}