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...
Arif-Kashmiree
Aug 01, 2024Copper Contributor
"Select No versioning" This option no more exist.
JaredMatfess
Aug 01, 2024Iron Contributor
You 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
# 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