Forum Discussion
Prathameshp2020
Aug 12, 2025Copper Contributor
Replace All no longer available!
Hi , I am trying to copy bulk of files from one folder to another in the same site library. The source has same files names as in the destination. When you using the copy to feature in SharePoint...
Closeeb
Aug 13, 2025Copper Contributor
Enable quick edit mode in SharePoint lists/document libraries to replace content in bulk, or force updates using a PowerShell script:
Get-PnPListItem -List Document Library | ForEach { Set-PnPListItem -List Document Library-Identity $_ -Values @{Field Name=New Value} }