-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSP2013-ConfigData.psd1
297 lines (269 loc) · 8.9 KB
/
SP2013-ConfigData.psd1
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
@{
AllNodes = @(
@{
NodeName = $env:COMPUTERNAME
PSDscAllowDomainUser = $true
PSDscAllowPlainTextPassword = $true
}
)
NonNodeData = @(
@{
ServiceAccounts = @(
@{
SPSetupAccount = $env:userdomain + '\svcSP_Setup'
FarmAccount = $env:userdomain + '\svcSP_Farm'
WapoolAccount = $env:userdomain + '\svcSP_Pool'
SapoolAccount = $env:userdomain + '\svcSP_Srvc'
CrawlAccount = $env:userdomain + '\svcSP_Crawler'
SearchAccount = $env:userdomain + '\svcSP_Srch'
}
)
#---------------------BINARIES INSTALL------------------------
# Define Installation of SharePoint Prerequisites and Binaries
FullInstallation = $True
# Location of the SharePoint Binaries -- #Insert Your Own Path
SPInstallationBinaryPath = 'G:\Tool\SP2013'
# Location of the SharePoint Logs and Services -- #Insert Your Own Path
SPPath = 'G:\SP'
# SharePoint Product Key -- #Insert Your Own Key :)
SPProductKey = 'XXXXX-XXXXX-XXXXX-XXXXX-XXXXX'
#---------------------FARM CREATION------------------------
# DB Prefix
ConfigDBPrefix = 'SP_Config_'
ContentDBPrefix = 'SP_Content_'
# ContentDB Name
ContentDBNamePlayground = 'Playground_01'
ContentDBNameMysite = 'MySite_01'
# Database Server Name
DatabaseServer = $env:COMPUTERNAME
# Central Admin Details
CentralAdminPort = 80
CentralAdminAuth = 'NTLM'
#---------------------APP POOLS------------------------
MainServiceAppPoolName = 'SharePoint Service Applications'
STSAppPoolName = 'SecurityTokenServiceApplicationPool'
WebAppPoolName = 'SharePoint Web Applications Pool'
#---------------------ULS Logs-----------------------------------
Logs = @(
@{
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
}
)
#---------------------SharePoint Services------------------------
AppManagement = @(
@{
Name = 'App Management Service Application'
Proxy = 'App Management Service Application Proxy'
}
)
BCS = @(
@{
Name = 'Business Data Connectivity Service Application'
ProxyName = 'Business Data Connectivity Service Application Proxy'
}
)
DistributedCache = @(
@{
Name = 'AppFabricCachingService'
CacheSizeInMB = 1024
}
)
ManagedMetadata = @(
@{
Name = 'Managed Metadata Service'
ProxyName = 'Managed Metadata Service Proxy'
IsSingleInstance = 'Yes'
}
)
PowerPoint = @(
@{
Name = 'PowerPoint Automation Service Application'
ProxyName = 'PowerPoint Automation Service Application Proxy'
CacheExpirationPeriodInSeconds = 600
MaximumConversionsPerWorker = 5
WorkerKeepAliveTimeoutInSeconds = 120
WorkerProcessCount = 3
WorkerTimeoutInSeconds = 300
IsSingleInstance = 'Yes'
}
)
Visio = @(
@{
Name = 'Visio Graphics Service'
ProxyName = 'Visio Graphics Service Proxy'
}
)
SecureStore = @(
@{
Name = 'Secure Store Service Application'
ProxyName = 'Secure Store Service Application Proxy'
AuditingEnabled = $true
AuditlogMaxSize = 30
}
)
Usage = @(
@{
Name = 'Usage and Health Data Collection Service Application'
UsageLogCutTime = 5
UsageLogMaxFileSizeKB = 1024
}
)
WordAutomationService = @(
@{
Name = 'Word Automation Services';
SupportedFileFormats = @("docx","doc","rtf","mht","xml")
TimeBeforeConversionIsMonitored = 5
RecycleThreshold = 50
MaximumSyncConversionRequests = 25
ConversionProcesses = 2
MaximumConversionTime = 600
DisableEmbeddedFonts = $False
DisableBinaryFileScan = $False
JobConversionFrequency = 1
ApplicationPool = 'Word Automation Service Application Pool'
MaximumMemoryUsage = 10
KeepAliveTimeout = 30
NumberOfConversionsPerProcess = 10
MaximumConversionAttempts = 2
}
)
Search = @(
@{
Name = 'Search Service Application'
ProxyName = 'Search Service Application Proxy'
ApplicationPool = 'SharePoint Server Search'
Admin = $env:COMPUTERNAME
Crawler = $env:COMPUTERNAME
ContentProcessing = $env:COMPUTERNAME
AnalyticsProcessing = $env:COMPUTERNAME
QueryProcessing = $env:COMPUTERNAME
IndexPartition = $env:COMPUTERNAME
ContentSource = @(
@{
LocalSharePointSites = @(
@{
Name = 'Local SharePoint Sites'
ContentSourceType = 'SharePoint'
Addresses = 'http://sp01.contoso.com'
CrawlSetting = 'CrawlSites'
Force = $true
ContinuousCrawl = $false
FullSchedule = $null
Priority = 'Normal'
}
)
Playground = @(
@{
Name = 'Playground'
ContentSourceType = 'SharePoint'
Addresses = 'http://playground.contoso.com'
CrawlSetting = 'CrawlSites'
Force = $true
ContinuousCrawl = $true
FullSchedule = $null
Priority = 'Normal'
}
)
MySite = @(
@{
Name = 'MySite'
ContentSourceType = 'SharePoint'
Addresses = @('http://mysite.contoso.com','sps3://mysite.contoso.com')
CrawlSetting = 'CrawlSites'
Force = $true
ContinuousCrawl = $false
FullSchedule = $null
Priority = 'Normal'
}
)
}
)
}
)
UPS = @(
@{
Name = 'User Profile Service Application'
ProxyName = 'User Profile Service Application Proxy'
ApplicationPool = 'SharePoint Service Applications'
MySiteHostLocation = 'http://mysite.contoso.com/'
EnableNetBIOS = $true
UserProfileSyncConnection = @(
@{
Forest = 'contoso.com'
Name = 'AD DS'
UseSSL = $false
IncludedOUs = @("OU=HQ,OU=CONTOSO,DC=contoso,DC=com")
Force = $false
ConnectionType = 'ActiveDirectory'
}
)
}
)
#---------------------Web Application PlayGround----------------------
WebApp_Playground = @(
@{
Name = 'Playground'
Url = 'http://playground.contoso.com'
AllowAnonymous = $false
HostHeader = 'playground.contoso.com'
Path = 'C:\inetpub\wwwroot\wss\VirtualDirectories\playground.contoso.com80'
Port = '80'
}
)
PlaygroundRootSite = @(
@{
Url = 'http://playground.contoso.com'
OwnerAlias = $env:userdomain + '\svcSP_Farm'
Template = 'STS#0'
Language = 1033
CompatibilityLevel = 15
}
)
#---------------------Web Application Mysite--------------------------
WebApp_MySite = @(
@{
Name = 'MySite'
Url = 'http://mysite.contoso.com/'
AllowAnonymous = $false
HostHeader = 'mysite.contoso.com'
Path = 'C:\inetpub\wwwroot\wss\VirtualDirectories\mysite.contoso.com80'
Port = '80'
}
)
MySiteRootSite = @(
@{
Url = 'http://mysite.contoso.com'
OwnerAlias = $env:userdomain + '\svcSP_Farm'
Template = 'SPSMSITEHOST#0'
Language = 1033
CompatibilityLevel = 15
}
)
#---------------------Misc-------------------------
SMTP = @(
@{
SMTPServer = 'smtp.office365.com'
FromAddress = 'noreply@contoso.com'
ReplyToAddress = 'noreply@contoso.com'
CharacterSet = '65001'
}
)
}
)
}