-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDSC-SingleServer.ps1
More file actions
275 lines (251 loc) · 11.1 KB
/
DSC-SingleServer.ps1
File metadata and controls
275 lines (251 loc) · 11.1 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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
Configuration Example
{
param (
[Parameter(Mandatory=$true)] [ValidateNotNullorEmpty()] [PSCredential] $FarmAccount,
[Parameter(Mandatory=$true)] [ValidateNotNullorEmpty()] [PSCredential] $WebPoolManagedAccount,
[Parameter(Mandatory=$true)] [ValidateNotNullorEmpty()] [PSCredential] $ServicePoolManagedAccount,
[Parameter(Mandatory=$true)] [ValidateNotNullorEmpty()] [PSCredential] $Passphrase
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName SharePointDsc
node "localhost"
{
#**********************************************************
# Install Binaries
#
# This section installs SharePoint and its Prerequisites
#**********************************************************
<#
SPInstallPrereqs InstallPrereqs {
Ensure = "Present"
InstallerPath = "C:\officeserver_en-us\prerequisiteinstaller.exe"
OnlineMode = $true
}
SPInstall InstallSharePoint {
Ensure = "Present"
BinaryDir = "c:\officeserver_en-us"
ProductKey = "M692G-8N2JP-GG8B2-2W2P7-YY7J6"
DependsOn = "[SPInstallPrereqs]InstallPrereqs"
}
#>
#**********************************************************
# Basic farm configuration
#
# This section creates the new SharePoint farm object, and
# provisions generic services and components used by the
# whole farm
#**********************************************************
SPFarm CreateSPFarm
{
Ensure = "Present"
DatabaseServer = "sp19"
FarmConfigDatabaseName = "SP_Config"
Passphrase = $Passphrase
FarmAccount = $FarmAccount
PsDscRunAsCredential = $FarmAccount
AdminContentDatabaseName = "SP_AdminContent"
RunCentralAdmin = $true
#DependsOn = "[SPInstall]InstallSharePoint"
}
SPManagedAccount ServicePoolManagedAccount
{
AccountName = $ServicePoolManagedAccount.UserName
Account = $ServicePoolManagedAccount
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPManagedAccount WebPoolManagedAccount
{
AccountName = $WebPoolManagedAccount.UserName
Account = $WebPoolManagedAccount
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPDiagnosticLoggingSettings ApplyDiagnosticLogSettings
{
PsDscRunAsCredential = $FarmAccount
LogPath = "C:\ULS"
LogSpaceInGB = 5
AppAnalyticsAutomaticUploadEnabled = $false
CustomerExperienceImprovementProgramEnabled = $true
DaysToKeepLogs = 7
DownloadErrorReportingUpdatesEnabled = $false
ErrorReportingAutomaticUploadEnabled = $false
ErrorReportingEnabled = $false
EventLogFloodProtectionEnabled = $true
EventLogFloodProtectionNotifyInterval = 5
EventLogFloodProtectionQuietPeriod = 2
EventLogFloodProtectionThreshold = 5
EventLogFloodProtectionTriggerPeriod = 2
LogCutInterval = 15
LogMaxDiskSpaceUsageEnabled = $true
ScriptErrorReportingDelay = 30
ScriptErrorReportingEnabled = $true
ScriptErrorReportingRequireAuth = $true
DependsOn = "[SPFarm]CreateSPFarm"
}
SPUsageApplication UsageApplication
{
Name = "Usage Service Application"
DatabaseName = "SP_Usage"
UsageLogCutTime = 5
UsageLogLocation = "C:\UsageLogs"
UsageLogMaxFileSizeKB = 1024
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPStateServiceApp StateServiceApp
{
Name = "State Service Application"
DatabaseName = "SP_State"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPDistributedCacheService EnableDistributedCache
{
Name = "AppFabricCachingService"
Ensure = "Present"
CacheSizeInMB = 1024
ServiceAccount = $ServicePoolManagedAccount.UserName
PsDscRunAsCredential = $FarmAccount
CreateFirewallRules = $true
DependsOn = @('[SPFarm]CreateSPFarm','[SPManagedAccount]ServicePoolManagedAccount')
}
#**********************************************************
# Web applications
#
# This section creates the web applications in the
# SharePoint farm, as well as managed paths and other web
# application settings
#**********************************************************
SPWebApplication SharePointSites
{
Name = "SharePoint Sites"
ApplicationPool = "SharePoint Sites"
ApplicationPoolAccount = $WebPoolManagedAccount.UserName
AllowAnonymous = $false
DatabaseName = "SP_Content"
Url = "http://portal"
HostHeader = "portal"
Port = 80
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPManagedAccount]WebPoolManagedAccount"
}
SPCacheAccounts WebAppCacheAccounts
{
WebAppUrl = "http://portal"
SuperUserAlias = "DEMO\srvspsuperuser"
SuperReaderAlias = "DEMO\srvspsuperreader"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPWebApplication]SharePointSites"
}
SPSite TeamSite
{
Url = "http://portal"
OwnerAlias = "DEMO\srvspfarm"
Name = "DSC Demo Site"
Template = "STS#0"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPWebApplication]SharePointSites"
}
#**********************************************************
# Service instances
#
# This section describes which services should be running
# and not running on the server
#**********************************************************
SPServiceInstance ClaimsToWindowsTokenServiceInstance
{
Name = "Claims to Windows Token Service"
Ensure = "Present"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPServiceInstance SecureStoreServiceInstance
{
Name = "Secure Store Service"
Ensure = "Present"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPServiceInstance ManagedMetadataServiceInstance
{
Name = "Managed Metadata Web Service"
Ensure = "Present"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPServiceInstance BCSServiceInstance
{
Name = "Business Data Connectivity Service"
Ensure = "Present"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPServiceInstance SearchServiceInstance
{
Name = "SharePoint Server Search"
Ensure = "Present"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
#**********************************************************
# Service applications
#
# This section creates service applications and required
# dependencies
#**********************************************************
$serviceAppPoolName = "SharePoint Service Applications"
SPServiceAppPool MainServiceAppPool
{
Name = $serviceAppPoolName
ServiceAccount = $ServicePoolManagedAccount.UserName
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPFarm]CreateSPFarm"
}
SPSecureStoreServiceApp SecureStoreServiceApp
{
Name = "Secure Store Service Application"
ApplicationPool = $serviceAppPoolName
AuditingEnabled = $true
AuditlogMaxSize = 30
DatabaseName = "SP_SecureStore"
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPServiceAppPool]MainServiceAppPool"
}
SPManagedMetaDataServiceApp ManagedMetadataServiceApp
{
Name = "Managed Metadata Service Application"
PsDscRunAsCredential = $FarmAccount
ApplicationPool = $serviceAppPoolName
DatabaseName = "SP_MMS"
DependsOn = "[SPServiceAppPool]MainServiceAppPool"
}
SPBCSServiceApp BCSServiceApp
{
Name = "BCS Service Application"
ApplicationPool = $serviceAppPoolName
DatabaseName = "SP_BCS"
PsDscRunAsCredential = $FarmAccount
DependsOn = @('[SPServiceAppPool]MainServiceAppPool', '[SPSecureStoreServiceApp]SecureStoreServiceApp')
}
SPSearchServiceApp SearchServiceApp
{
Name = "Search Service Application"
DatabaseName = "SP_Search"
ApplicationPool = $serviceAppPoolName
PsDscRunAsCredential = $FarmAccount
DependsOn = "[SPServiceAppPool]MainServiceAppPool"
}
#**********************************************************
# Local configuration manager settings
#
# This section contains settings for the LCM of the host
# that this configuraiton is applied to
#**********************************************************
LocalConfigurationManager
{
RebootNodeIfNeeded = $true
}
}
}