Forum Discussion
Alex Gonsales
Nov 06, 2017Brass Contributor
SharePoint Online MD5 Checksum
I've written a PnP-PowerShell script to migrate network file shares and local drives to SharePoint Online, the script is absolutely gorgeous, it preserves metadata, maps users, creates and fill out D...
skumar9342
Jun 10, 2021Copper Contributor
This is default behavior for office files uploaded/moved to SharePoint. You can disable the setting at library level and then checksum is validated. List property (ParserDisabled) can be updated using PowerShell. Set it to True.
$List=$Ctx.Web.Lists.GetByTitle($ListName)
$Ctx.Load($List)
$Ctx.ExecuteQuery()
Write-host "Parser Disabled value " $List.ParserDisabled
$List.ParserDisabled = $true
$List.Update()
$ctx.ExecuteQuery()
$List=$Ctx.Web.Lists.GetByTitle($ListName)
$Ctx.Load($List)
$Ctx.ExecuteQuery()
Write-host "Parser Disabled value " $List.ParserDisabled
$List.ParserDisabled = $true
$List.Update()
$ctx.ExecuteQuery()
Paul_HK_de_Jong
Jun 10, 2021Iron Contributor
Can this also be used for SharePoint Online or does it only apply to on-premise?