-
Notifications
You must be signed in to change notification settings - Fork 8
/
SPO-Lists.ps1
548 lines (483 loc) · 19.7 KB
/
SPO-Lists.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
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
# File: SPO-Lists.ps1
# Purpose: provides some utilities for working with list in a SharePoint Online
# tenant.
#
# Copyright (c) 2019, jdgregson
# Author: Jonathan Gregson <[email protected]>
Param (
[bool]$import = $False,
[bool]$silent = $False
)
function SPOLists-Init {
Param (
[string]$sharePointUrl,
[string]$username,
[Security.SecureString]$password,
[bool]$silent = $False
)
$DLL1 = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client")
$DLL2 = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Runtime")
if (-Not($DLL1) -Or -Not($DLL2)) {
Write-Host "Could not load shared libraries."
Write-Host "You may need to install the following Windows updates to use this script:"
Write-Host " https://www.microsoft.com/en-us/download/details.aspx?id=35585"
if ($PSVersionTable -And $PSVersionTable.PSVersion.Major -Lt 5) {
Write-Host " https://www.microsoft.com/en-us/download/details.aspx?id=50395"
}
Exit
}
if (-Not($global:SPcontext) -Or -Not($global:SPweb) -Or -Not($global:SPsite)) {
$global:SharePointUrl = $sharePointUrl
Write-Host "Connecting to $global:sharePointUrl..."
if ($username) {
Write-Host "Username: $username"
} else {
$username = Read-Host "Enter username"
}
if (-Not($password)) {
$password = Read-Host -Prompt "Enter password" -AsSecureString
}
$global:SPusername = $username
$global:SPcontext = New-Object Microsoft.SharePoint.Client.ClientContext($global:SharePointUrl)
$credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($global:SPusername, $password)
$global:SPcontext.Credentials = $credentials
$global:SPcontext.RequestTimeOut = 5000 * 60 * 10;
$global:SPweb = $global:SPcontext.web
$global:SPsite = $global:SPcontext.site
$global:SPcontext.Load($global:SPweb)
$global:SPcontext.Load($global:SPsite)
$global:SPcontext.ExecuteQuery()
}
if (-Not($silent)) {
"Successfully connected to the SharePoint online site $global:SharePointUrl."
"Some utilities are provided to help work with lists, as detailed below.`n"
Write-Host "NOTE: if you get an error saying 'The collection has not been initialized.', you likely need to assign the value in question to a varialbe and loop through it." -Foreground Yellow
show-listcommands
Write-Host "type Show-ListCommands to show this list again"
Write-Host "`nType `"Get-Help command -Full`" for more details. I.E. `"Get-Help Get-ListFields -Full`""
}
}
function global:blue($Output, $NewLine=$true) {
if ($NewLine) {Write-Host "$Output" -ForegroundColor Cyan}
else {Write-Host "$Output" -ForegroundColor Cyan -NoNewline}
}
function global:magenta($Output, $NewLine=$true) {
if ($NewLine) {Write-Host "$Output" -ForegroundColor Magenta}
else {Write-Host "$Output" -ForegroundColor Magenta -NoNewline}
}
function global:Show-ListCommands {
Write-Host "`nAvailable Commands:"
magenta "Write-ValueToListField" $false
blue " ListName FieldName ReplaceWith"
magenta "Write-ValueToListFieldIf" $false
blue " ListName FieldName IsEqualTo ReplaceWith"
magenta "Get-ListFields" $false
blue " ListName FieldNames" $false
Write-Host " - E.G.: Get-ListFields 'My List' 'Title','Field1','Field2'"
magenta "Get-AllListItems" $false
blue " ListName"
magenta "Show-AllListItems" $false
blue " ListName"
magenta "Get-UserListItems" $false
blue " ListName"
magenta "Show-UserListItems" $false
blue " ListName"
magenta "Get-AllListNames"
magenta "Show-AllListNames"
magenta "Get-UserListNames"
magenta "Show-UserListNames"
magenta "Get-AllFieldNames" $false
blue " ListName"
magenta "Show-AllFieldNames" $false
blue " ListName"
magenta "Get-UserFieldNames" $false
blue " ListName"
magenta "Show-UserFieldNames" $false
blue " ListName"
}
$global:SP_SYSTEM_FIELDS = 'Content Type ID','Approver Comments','File Type',
'Created By','App Modified By','Last Modified Date','Total File Stream Size',
'Modified By','Modified','Created','ID','Content Type','Property Bag',
'Has Copy Destinations','Copy Source','owshiddenversion','Name','Type',
'Workflow Version','UI Version','Version','Attachments','Approval Status',
'Edit','Select','Instance ID','Order','GUID','Workflow Instance ID',
'URL Path','Path','Item Type','Sort Type','Effective Permissions Mask',
'Unique Id','Client Id','ProgId','ScopeId','HTML File Type','Label setting',
'Edit Menu Table Start','Edit Menu Table End','Server Relative URL',
'Encoded Absolute URL','File Name','Level','Is Current Version','Total Size',
'Item Child Count','Folder Child Count','Restricted','Originator Id',
'NoExecute','Content Version','Labels','Label Applied','Label applied by',
'Access Policy','VirusStatus','VirusVendorID','VirusInfo','App Created By',
'Total File Count','Compliance Asset Id','Item is a Record'
$global:SP_SYSTEM_LISTS = 'Access Requests','appdata','appfiles','Composed Looks',
'Content type publishing error log','Converted Forms','Form Templates',
'fpdatasources','List Template Gallery','Maintenance Log Library','wfpub',
'Master Page Gallery','Project Policy Item List','SharePointHomeOrgLinks',
'Sharing Links','Solution Gallery','Style Library','TaxonomyHiddenList',
'Theme Gallery','User Information List','Web Part Gallery','Site Pages',
'Site Assets'
function global:Write-ValueToListField($ListName, $FieldName, $ReplaceWith, $silent=$false, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Loops through every item in $ListName and will replace the contents of the $field field with $replaceWith.
.PARAMETER ListName
The display name of the list to be updated.
.PARAMETER FieldName
The name of the field to be updated.
.PARAMETER ReplaceWith
The value to insert into the specified field.
.PARAMETER Silent
[bool] whether or not to print details of the changes.
.NOTES
THIS CANNOT BE EASILY REVERSED.
.EXAMPLE
Write-ValueToListField "My List" "Status" "Shipped"
#>
$Fields = Get-AllFieldNames $ListName $w $c
if (-Not($Fields.Contains($FieldName))) {
Write-Host "'$FieldName' is not a field in '$ListName'. Did you use proper capitalization?" -ForegroundColor Red
return
}
$List = Get-AllListItems $ListName $w $c
ForEach ($ListItem in $List) {
if (-Not([string]::IsNullOrEmpty($ReplaceWith)) -And $ReplaceWith.Substring(0, 1) -Eq '>' -And -Not($ReplaceWith.Substring(1, 2) -Eq '>')) {
$_ReplaceWith = $ReplaceWith.TrimStart('>')
$_ReplaceWith = Invoke-Expression $_ReplaceWith
} else {
$_ReplaceWith = $ReplaceWith
}
$OldValue = $ListItem["$FieldName"];
$ListItem["$FieldName"] = "$_ReplaceWith"
$ListItem.Update()
if (-Not($silent)) {
$Title = $ListItem["Title"]
$NewValue = $ListItem["$FieldName"];
if (-Not($NewValue)) {$NewValue = '[EMPTY]'}
if (-Not($OldValue)) {$OldValue = '[EMPTY]'}
Write-Host "$Title.$FieldName, $OldValue --> $NewValue"
}
$c.Load($ListItem)
$c.ExecuteQuery()
}
}
function global:Write-ValueToListFieldif ($ListName, $FieldName, $IsEqualTo, $ReplaceWith, $silent=$false, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Loops through every item in $ListName and will replace the contents of the $field field with $replaceWith.
.PARAMETER ListName
The display name of the list to be updated.
.PARAMETER FieldName
The name of the field to be updated.
.PARAMETER IsEqualTo
The value that $FieldName must be in order to be replaced by $ReplaceWith.
.PARAMETER ReplaceWith
The value to insert into the specified field.
.PARAMETER Silent
[bool] whether or not to print details of the changes.
.NOTES
THIS CANNOT BE EASILY REVERSED.
.EXAMPLE
Write-ValueToListFieldIf "My List" "Status" "Processing" "Shipped"
#>
$Fields = Get-AllFieldNames $ListName $w $c
if (-Not($Fields.Contains($FieldName))) {
Write-Host "'$FieldName' is not a field in '$ListName'. Did you use proper capitalization?" -ForegroundColor Red
return
}
$List = Get-AllListItems $ListName $w $c
$CleanFieldName = $FieldName.Replace(" ", "_x0020_")
ForEach ($ListItem in $List) {
if (-Not([string]::IsNullOrEmpty($ReplaceWith)) -And $ReplaceWith.Substring(0, 1) -Eq '>' -And -Not($ReplaceWith.Substring(1, 2) -Eq '>')) {
$_ReplaceWith = $ReplaceWith.TrimStart('>')
$_ReplaceWith = Invoke-Expression $_ReplaceWith
} else {
$_ReplaceWith = $ReplaceWith
}
$OldValue = $ListItem["$CleanFieldName"];
if ($OldValue -Eq $IsEqualTo) {
$ListItem["$CleanFieldName"] = "$_ReplaceWith"
$ListItem.Update()
$c.Load($ListItem)
$c.ExecuteQuery()
}
if (-Not($silent)) {
$Title = $ListItem["Title"][0..25] -Join ""
$NewValue = $ListItem["$CleanFieldName"];
if ([string]::IsNullOrEmpty($NewValue)) {$NewValue = '[EMPTY]'}
if ([string]::IsNullOrEmpty($OldValue)) {$OldValue = '[EMPTY]'}
if ($OldValue -Eq $IsEqualTo) {
Write-Host "$Title.$FieldName, $OldValue --> $NewValue" -ForegroundColor Green
} else {
Write-Host "$Title.$FieldName, $OldValue --> $NewValue" -ForegroundColor Red
}
}
}
}
function global:Get-AllListItems($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns every row and field in $ListName as an array.
.PARAMETER ListName
The display name of the list to be returned.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$Items = Get-AllListItems "My List"
#>
$Lists = $w.Lists
$c.Load($Lists)
$c.ExecuteQuery()
$List = $Lists.getByTitle($ListName)
$c.Load($List)
$c.ExecuteQuery()
$Items = $List.GetItems([Microsoft.SharePoint.Client.CamlQuery]::CreateAllItemsQuery())
$c.Load($Items)
$c.ExecuteQuery()
return $Items
}
function global:Show-AllListItems($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Shows every row and field in $ListName.
.PARAMETER ListName
The display name of the list to be shown.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$Items = Get-AllListItems "My List"
#>
$ListItems = Get-AllListItems $ListName $w $c
$ListFields = Get-AllFieldNames $ListName $w $c
ForEach ($ListItem in $ListItems) {
ForEach ($ListField in $ListFields) {
Write-Host $ListItem["$ListField"]
}
}
}
function global:Get-UserListItems($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns the data in every user-created field in each row of $ListName in CSV format.
.PARAMETER ListName
The display name of the list to be returned.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$Items = Get-UserListItems "My List"
#>
$Fields = Get-UserFieldNames $ListName $w $c
$Items = Get-ListFields $ListName $Fields $w $c
return $Items
}
function global:Show-UserListItems($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Shows the data in every user-created field in each row of $ListName in CSV format.
.PARAMETER ListName
The display name of the list to be returned.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$Items = Get-UserListItems "My List"
#>
Get-UserListItems $ListName $w $c
}
function global:Get-ListFields($ListName, $FieldNames, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns specified fields from all rows in $ListName in CSV format.
.PARAMETER ListName
The display name of the list with fields to be returned.
.PARAMETER FieldNames
The display name of the fields to return from the list (as an array). E.G:
Get-ListFields 'My List' 'Title','Field1','Field2'
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$Items = Get-ListFields 'My List' 'Title','Field1','Field2'
#>
$ListItems = Get-AllListItems $ListName $w $c
$Output = @()
$FieldsLength = $FieldNames.Count
if ($FieldsLength -Lt 1) {
Write-Host "You must specify fields to return." -ForegroundColor Red
return
}
ForEach ($ListItem in $ListItems) {
$ThisLine = ""
$i = 0
ForEach ($FieldName in $FieldNames) {
$i++;
$CleanFieldName = $FieldName.Replace(" ", "_x0020_")
$String = $ListItem["$CleanFieldName"]
if ($String.LookupValue) {
$String = $String.LookupValue
}
if ($i -Eq $FieldsLength) {$ThisLine += "`"$String`""}
else {$ThisLine += "`"$String`","}
}
$ThisLine = $ThisLine.Replace(",`n", "`n")
$Output += $ThisLine
}
return $Output
}
function global:Get-AllListNames($w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns the name of every list in the SharePoint site.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$ListNames = Get-AllListNames
#>
$Lists = $w.Lists
$c.Load($Lists)
$c.ExecuteQuery()
return $Lists
}
function global:Show-AllListNames($w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Shows the name of every list in the SharePoint site.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
Show-AllListNames
#>
$Lists = Get-AllListNames $w $c
ForEach ($Item in $Lists) {
Write-Host $Item.Title
}
}
function global:Get-UserListNames($w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns the name of every user-created list in the SharePoint site.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$ListNames = Get-UserListNames
#>
$Filter = $global:SP_SYSTEM_LISTS
$Lists = Get-AllListNames $w $c
$FilteredLists = @()
ForEach ($List in $Lists) {
if (-Not($Filter.Contains($List.Title))) {
$FilteredLists += $List.Title
}
}
return $FilteredLists
}
function global:Show-UserListNames($w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Shows the name of every user-created list in the SharePoint site.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
Show-UserListNames
#>
$Lists = Get-UserListNames $w $c
$Lists
}
function global:Get-AllFieldNames($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns a list of all field names in the list $ListName.
.PARAMETER ListName
The list whose fields should be returned.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$FieldNames = Get-AllFieldNames
#>
$Lists = $w.Lists
$c.Load($Lists)
$c.ExecuteQuery()
$List = $Lists.getByTitle($ListName)
$c.Load($List)
$c.ExecuteQuery()
$Fields = $List.Fields
$c.Load($Fields)
$c.ExecuteQuery()
return $Fields
}
function global:Show-AllFieldNames($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Shows a list of all field names in the list $ListName.
.PARAMETER ListName
The list whose fields should be shown.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
Show-AllFieldNames
#>
$Fields = Get-AllFieldNames $ListName $w $c
$Fields | Select Title,InternalName
}
function global:Get-UserFieldNames($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
returns a list of all user-created field names in the list $ListName.
.PARAMETER ListName
The list whose user-defined fields should be returned.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
$FieldNames = Get-UserFieldNames
#>
$Filter = $global:SP_SYSTEM_FIELDS
$Fields = Get-AllFieldNames $ListName $w $c
$FilteredFields = @()
ForEach ($Field in $Fields) {
if (-Not($Filter.Contains($Field.Title))) {
$FilteredFields += $Field
}
}
return $FilteredFields
}
function global:Show-UserFieldNames($ListName, $w=$global:SPweb, $c=$global:SPcontext) {
<#
.SYNOPSIS
Shows a list of all user-created field names in the list $ListName.
.PARAMETER ListName
The list whose user-defined fields should be shown.
.PARAMETER w
The ClientContext.Web object to use to get the list. This defaults to $global:SPweb which is handled by this script.
.PARAMETER c
The ClientContext object to use to get the list. This defaults to $global:SPcontext which is handled by this script.
.EXAMPLE
Show-UserFieldNames
#>
$Fields = Get-UserFieldNames $ListName $w $c
$Fields | Select Title,InternalName
}
if (!$import) {
SPOLists-Init -silent $silent
}