Forum Discussion
Alex Gonsales
Nov 07, 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 11, 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()