Forum Discussion
Arif-Kashmiree
Jul 31, 2024Copper Contributor
Stop SharePoint document versioning
Hi, I am using the SharePoint library with Some more columns. On every edit in columns after uploading a document. Some tasks are updated with Microsoft Power Automate. Making the new ver...
Don_Kirkham
Jul 31, 2024Copper Contributor
Arif-Kashmiree In your post, you asked about turning off versioning. This is possible by turning it off for the library. When you turn it off, it automatically deletes all previous versions, so if you just want to delete all previous versions, but not turn off versioning permanently, you could turn versioning off and then back on.
To turn off versioning:
Go to Library Settings > Versioning Settings
Select No versioning
Click OK
Good luck!
Don
If my answer helps solve or resolve your issue, please consider clicking Mark as Best Response & Like. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it a Like.
- Arif-KashmireeAug 01, 2024Copper Contributor"Select No versioning" This option no more exist.
- JaredMatfessAug 01, 2024Iron ContributorYou can turn off versioning at the library level also using PNP Powershell:
# Connect to the SharePoint site
Connect-PnPOnline -Url "https://jaredisawesome.sharepoint.com/sites/YourSiteHere/" -UseWebLogin
# Disable versioning for the specific document library
Set-PnPList -Identity "Shared Documents" -EnableVersioning $false