Skip to content

Instantly share code, notes, and snippets.

@ypcode
Created July 22, 2017 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ypcode/5fe5971f0febcc36396f28f9784b39f9 to your computer and use it in GitHub Desktop.
Save ypcode/5fe5971f0febcc36396f28f9784b39f9 to your computer and use it in GitHub Desktop.
[CmdletBinding()]
Param (
[Parameter(Mandatory=$True)]
[string]$List,
[Parameter(Mandatory=$True)]
[string]$SourceContentType,
[Parameter(Mandatory=$True)]
[string]$TargetContentType
)
$ctx = Get-PnPContext
if (!$ctx) {
Connect-PnPOnline
}
$ListObj = $null
$SourceContentTypeObj = $null
$TargetContentTypeObj = $null
# Instantiate the list object
$ListObj = Get-PnPList -Identity $List
If (!$ListObj) {
Throw "The target list cannot be found"
}
Get-PnPProperty -ClientObject $ListObj -Property Title,ContentTypes
# Instantiate the source content type object
$SourceContentTypeObj = Get-PnPContentType -List $ListObj | ? {$_.Name -eq $SourceContentType}
If (!$SourceContentTypeObj) {
Throw "The specified content type cannot be found in the list"
}
# Ensure the source content type name and id
Get-PnPProperty -ClientObject $SourceContentTypeObj -Property Name,Id
# Try to retrieve the target content type from the target list
$TargetContentTypeObj = Get-PnPContentType -List $ListObj | ?{$_.Name -eq $TargetContentType}
# If the target content type does not already exist in the target list, add it
If (!$TargetContentTypeObj) {
# Retrieve it from the available content types
$TargetContentTypeObj = Get-PnPContentType -InSiteHierarchy | ?{$_.Name -eq $TargetContentType}
If (!$TargetContentTypeObj) {
Throw "The specified content type does not exists neither in list nor in site collection"
}
# Add the content type to the target list
Add-PnPContentTypeToList -List $ListObj -ContentType $TargetContentTypeObj
}
# Get all items of the target list having the source content type
$camlQuery = $("<View>
<Query>
<Where>
<Eq>
<FieldRef Name='ContentType'/>
<Value Type='Computed'>$SourceContentType</Value>
</Eq>
</Where>
</Query>
<ViewFields>
<FieldRef Name='Id'/>
<FieldRef Name='Title'/>
<FieldRef Name='FileLeafRef'/>
</ViewFields>
</View>")
$itemsToUpdate = @(Get-PnPListItem -List $ListObj -Query $camlQuery)
$total = $itemsToUpdate.Count
if ($total -eq 0) {
Write-Host "No items to migrate"
Return
}
$progressStep = 100/$total
For ($i = 0; $i -lt $total; $i++) {
$item = $itemsToUpdate[$i]
$title = if ($item.Title) {$item.Title} else {$item["FileLeafRef"]}
$itemInfo = "$title [$($item.Id)]"
$currentProgress = ($i+1)*$progressStep
Try
{
$dummy = Set-PnPListItem -List $ListObj -Identity $item -ContentType $TargetContentTypeObj
Write-Progress -Activity "Migrating Content Types" -Status "Content type of item $itemInfo has been migrated" -PercentComplete $currentProgress
}
Catch
{
Write-Progress -Activity "Migrating Content Types" -Status "Content type of item $itemInfo has not been migrated" -PercentComplete $currentProgress
Write-Warning "Item $itemInfo cannot be fully updated."
Write-Error $_.Error.Message
Write-Error $_.Error.StackTrace
}
}
Write-Progress -Activity "Migrating Content Types" -Status "Operation complete" -PercentComplete 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment