-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddToDomain.v1.ps1
186 lines (149 loc) · 4.78 KB
/
AddToDomain.v1.ps1
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<#
.EXAMPLE
Text Goes Here
#>
Set-ExecutionPolicy -ExecutionPolicy Unrestricted
cd C:\TEMP
<# Determine Name of the Network Adapter in this OS #>
$NetAdapterName = Get-NetAdapter -Name "Ethernet*"
$NetAdapterName = $NetAdapterName.ifAlias
$Credential = Get-Credential -UserName 'administrator' -Message "New Domain Admin User Name and Password"
Configuration NameTimeIP
{
########################################################
# Account Credential and Variable Region
########################################################
param
(
<# Computer Variables #>
<# Server Name #>
[Parameter()]
[String]
$Name = 'PowerSTIG',
<# Server Description #>
[Parameter()]
[String]
$ComputerDescription = 'PowerSTIG Station',
<# Server IP Address #>
[Parameter()]
[String]
$IPAddress = '192.168.87.220',
<# Server Default Gateway #>
[Parameter()]
[String]
$DefaultGateway = '192.168.87.1',
<# DNS Server IP Address #>
[Parameter()]
[String]
$DNS = '192.168.87.201',
<# FQDN = HostName.DomainName.TopLevelDomainName example = server.'DEV2'.test #>
<# Domain Name #>
[Parameter()]
[String]
$Domain = 'dev2',
<# FQDN = HostName.DomainName.TopLevelDomainName example = server.dev2.'TEST' #>
<# Top Level Domain Name #>
[Parameter()]
[String]
$TopLevelDomain = 'test',
<# Combined AD Domain Name #>
[Parameter()]
[String]
$DomainFQDN = $Domain + '.' + $TopLevelDomain
)
########################################################
# DSC Module Region
########################################################
Import-DscResource -ModuleName xPSDesiredStateConfiguration
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -Module NetworkingDsc
Import-DscResource -Module ComputerManagementDsc
Import-DscResource -Module xNetworking
Import-DSCResource -ModuleName xDnsServer
Import-DscResource -ModuleName SqlServerDsc
Import-DscResource -ModuleName xSqlServer
########################################################
# DSC Node Region
########################################################
Node $AllNodes.NodeName
{
NetAdapterBinding DisableIPv6
{
InterfaceAlias = $NetAdapterName
ComponentId = 'ms_tcpip6'
State = 'Disabled'
}
IPAddress SetIPAddress
{
IPAddress = $IPAddress
InterfaceAlias = $NetAdapterName
AddressFamily = 'IPV4'
DependsOn = '[NetAdapterBinding]DisableIPv6'
}
DnsServerAddress SetDnsServerAddress
{
Address = $DNS
InterfaceAlias = $NetAdapterName
AddressFamily = 'IPv4'
DependsOn = '[IPAddress]SetIPAddress'
}
DefaultGatewayAddress SetDefaultGateway
{
Address = $DefaultGateway
InterfaceAlias = $NetAdapterName
AddressFamily = 'IPv4'
DependsOn = '[DnsServerAddress]SetDnsServerAddress'
}
TimeZone SetTimeZoneToGMT
{
IsSingleInstance = 'Yes'
TimeZone = 'GMT Standard Time'
DependsOn = '[DefaultGatewayAddress]SetDefaultGateway'
}
Computer JoinDomain
{
Name = $Name
Description = $ComputerDescription
DomainName = $DomainFQDN
Credential = $Credential # Credential to join to domain
DependsOn = '[TimeZone]SetTimeZoneToGMT'
}
PendingReboot XYZ
{
Name = 'ABC'
SkipComponentBasedServicing = $false
SkipWindowsUpdate = $false
SkipPendingFileRename = $false
SkipPendingComputerRename = $false
SkipCcmClientSDK = $false
DependsOn = '[Computer]JoinDomain'
}
}
}
$cd = @{
AllNodes = @(
@{
NodeName = 'localhost'
PsDscAllowDomainUser = $true
PsDscAllowPlainTextPassword = $true
ActionAfterReboot = 'ContinueConfiguration';
RebootNodeIfNeeded = $true;
}
)
}
[DSCLocalConfigurationManager()]
Configuration LCMConfig
{
Node 'localhost'
{
Settings
{
ActionAfterReboot = 'ContinueConfiguration';
RebootNodeIfNeeded = $true;
}
}
}
LCMConfig
Set-DscLocalConfigurationManager LCMConfig -Force -Verbose
NameTimeIP -ConfigurationData $cd
Start-DscConfiguration NameTimeIP -Force -Wait -Verbose