This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Add-FieldToList() | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)][string]$url, | |
| [Parameter(Mandatory=$true)][System.Net.NetworkCredential]$credentials, | |
| [Parameter(Mandatory=$true)][string]$listName, | |
| [Parameter(Mandatory=$true)][string]$fieldName, | |
| [Parameter(Mandatory=$true)][string]$fieldXml, | |
| [Parameter(Mandatory=$false)][bool]$isExistingField | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function CheckPageExists() | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)][string]$siteurl, | |
| [Parameter(Mandatory=$false)][System.Net.NetworkCredential]$credentials, | |
| [Parameter(Mandatory=$false)][string]$PageName | |
| ) | |
| begin{ | |
| try | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Create-ListViewInner() | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)][string]$url, | |
| [Parameter(Mandatory=$false)][System.Net.NetworkCredential]$credentials, | |
| [Parameter(Mandatory=$true)][string]$listName, | |
| [Parameter(Mandatory=$true)][string]$viewName | |
| ) | |
| begin{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Create-ListViewFolder() | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)][string]$url, | |
| [Parameter(Mandatory=$false)][System.Net.NetworkCredential]$credentials, | |
| [Parameter(Mandatory=$true)][string]$listName, | |
| [Parameter(Mandatory=$true)][string]$viewName | |
| ) | |
| begin{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function CheckSiteExists() | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)][string]$url | |
| ) | |
| begin{ | |
| $context = New-Object Microsoft.SharePoint.Client.ClientContext($url) | |
| $web = $context.Web | |
| $context.Load($web) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # replace these details (also consider using Get-Credential to enter password securely as script runs).. | |
| $username = "[email protected]" | |
| $password = "YourPassword" | |
| $url = "https://YourSite.sharepoint.com" | |
| $securePassword = ConvertTo-SecureString $Password -AsPlainText -Force | |
| # the path here may need to change if you used e.g. C:\Lib.. | |
| Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll" | |
| Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.SharePoint.Client; | |
| namespace RecordCentreRule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # replace these details (also consider using Get-Credential to enter password securely as script runs).. | |
| $username = "[email protected]" | |
| $password = "YourPassword" | |
| $url = "https://YourSite.sharepoint.com" | |
| $securePassword = ConvertTo-SecureString $Password -AsPlainText -Force | |
| # the path here may need to change if you used e.g. C:\Lib.. | |
| Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll" | |
| Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.SharePoint.Client; | |
| namespace RecordCentreRule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function AddFieldFromParentContentType() | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)][string]$url, | |
| [Parameter(Mandatory=$false)][System.Net.NetworkCredential]$credentials, | |
| [Parameter(Mandatory=$true)][string]$ContentTypeName, | |
| [Parameter(Mandatory=$true)][string]$FieldInternalName | |
| ) | |
| begin{ |