Fixing “File Version History Not Available” in SharePoint – A Step-by-Step Guide
SharePoint Version History allows users to view, restore, or track changes made to a document. However, sometimes you may encounter an issue where Version History is not accessible, missing, or unavailable for a particular file.
Common Error Messages:
- “Version History is not available for this file.”
- “No previous versions found.”
- “Versioning is not enabled for this document library.”
- “You do not have permission to view version history.”
This guide provides detailed troubleshooting steps to fix and restore version history in SharePoint.
Step 1: Verify if Versioning is Enabled in SharePoint
By default, SharePoint versioning is not enabled for all document libraries.
How to Check and Enable Versioning:
- Go to the Document Library where the file is stored.
- Click Settings (Gear Icon) → Library Settings.
- Under “Content Types”, select “Versioning Settings”.
- Check if:
- Major Versioning is enabled.
- Minor (Draft) Versions are allowed (for collaboration).
- The number of stored versions is not set to zero.
- If versioning is disabled, turn it on and save changes.
✔ If versioning is already enabled, proceed to the next step.
Step 2: Check Permissions for Version History Access
If versioning is enabled but you cannot see past versions, it may be due to insufficient permissions.
How to Check and Adjust Permissions:
- Go to the Document Library.
- Click Settings → Library Permissions.
- Check if you have at least “Read” or “Edit” permissions.
- If necessary, request Full Control from the SharePoint Admin.
✔ Once permissions are updated, try accessing Version History again.
Step 3: Access Version History from OneDrive or File Explorer
If you use OneDrive Sync, you may be able to retrieve an older version directly from OneDrive.
For OneDrive:
- Open OneDrive Online → Navigate to the file.
- Right-click the file → Click Version History.
- Restore an earlier version if available.
For File Explorer (Windows Users):
- Right-click the file → Click Properties.
- Select the Previous Versions tab.
- If versions are available, select one and click Restore.
✔ If an older version is found, you can re-upload it to SharePoint.
Step 4: Restore from SharePoint Recycle Bin
If a version was deleted accidentally, it may still be in the Recycle Bin.
To Restore from Recycle Bin:
- Go to the SharePoint Site → Click Recycle Bin.
- Search for the missing file version.
- If found, select it and click Restore.
✔ If the file is restored, check its version history again.
Step 5: Check if the File Was Moved or Renamed
If a file is moved to another document library, its version history does not carry over.
Find the Original File Location:
- Search for the file name in SharePoint.
- Check recent activity logs in the Document Library.
- If found, check its version history in the original location.
✔ If the file was moved, restore an earlier version manually.
Step 6: Restore File from SharePoint Backup
If version history is missing due to system issues, request a backup restore.
Contact Your SharePoint Admin:
- Request a backup recovery from Microsoft 365 Admin Center.
- Ask them to restore the document library to a previous state.
✔ If a backup is available, you should regain access to the missing version history.
Step 7: Use PowerShell to Retrieve Missing Versions
If version history is missing for many files, use PowerShell to retrieve older versions.
Run This PowerShell Script:
# Connect to SharePoint Online
Connect-PnPOnline -Url "https://yoursharepointsite" -UseWebLogin
# Get Version History for a File
$File = Get-PnPFile -Url "/sites/yoursite/Shared Documents/YourFile.docx" -AsListItem
$FileVersions = Get-PnPProperty -ClientObject $File -Property Versions
# Display Versions
$FileVersions | ForEach-Object { Write-Host "Version: " $_.VersionLabel "Modified by: " $_.CreatedBy }
✔ If versions exist, use PowerShell to restore them.
Step 8: Contact Microsoft Support for Data Recovery
If all else fails, Microsoft 365 Support may help recover missing versions.
Steps to Contact Support:
- Go to Microsoft Admin Center: https://admin.microsoft.com
- Sign in as an admin.
- Navigate to Support → New Service Request.
- Describe the issue and request file version recovery.
✔ Microsoft may be able to restore version history within 14 days of deletion.
Preventing Version History Issues in the Future
✔ Enable Versioning for All Document Libraries – Prevents accidental loss.
✔ Set a Retention Policy – Ensures older versions are kept.
✔ Train Users on File Management – Reduces accidental deletions.
✔ Backup Files Regularly – Prevents version history loss.
✔ Use SharePoint Co-Authoring – Avoids version conflicts.