If you tagged all your files/folders in a document library with a retention label/tag, here’s a quick way to remove them via PnP:
1 2 3 4 5 6 7 8 9 10 |
Connect-PnPOnline -Url https://mngenvmcap495437.sharepoint.com/sites/RETENTION-TEST1 -UseWebLogin $items = Get-PnPListItem -List "Documents" foreach ($item in $items) { Set-PnPListItem -Identity $item.Id -List "Documents" -ClearLabel } |
Enjoy!