📄 Article
Unable to Restore Archived OneDrive Site Without Billing – Data Recovered via eDiscovery
Administrators may encounter scenarios where a departed user’s OneDrive (personal site) has been automatically archived due to license removal. While attempting to restore the site, the operation fails due to missing billing configuration. However, business-critical data can still be partially retrieved using Microsoft Purview eDiscovery.
This post explains why full site restoration fails, and how data recovery via eDiscovery serves as an alternative when billing is not enabled.
⚠️ The Symptoms / Error Message
⚠️ PowerShell Error
While attempting to reactivate the archived OneDrive site:
Set-SPOSiteArchiveState : Tenant's syntex billing profile hasn't been setup or is not active. ArchiveStatus: RecentlyArchived
💡 Additional Observations
- The site is inaccessible to both users and admins
- Attempts to activate the site fail due to billing dependency
🧠 Root Cause
💡 Microsoft Unlicensed OneDrive Account Policy
This behavior is by design under Microsoft’s Unlicensed OneDrive Account policy and Microsoft 365 Archive billing model:
- Day 60 after license removal → OneDrive becomes read-only
- Day 93 after license removal → OneDrive is automatically archived
⚠️ Once Archived
- Full site access is blocked
- Reactivation becomes a paid operation
- Requires Microsoft Syntex (Pay-As-You-Go) billing configuration
- If billing is not configured, SharePoint blocks the reactivation request
🛠️ Step-by-Step Resolution
1
Option 1 — Recover Data Using eDiscovery (No Billing Required)
Even if the site is archived, data can still be retrieved using Microsoft Purview eDiscovery, provided retention or indexing exists.
✅ Steps — Microsoft Purview Portal (GUI)
- Go to Microsoft Purview Portal → purview.microsoft.com
- Navigate to eDiscovery (Standard or Premium) → Create a New Case
- Go to Searches → create a search with Location: OneDrive accounts and select the affected user’s URL
- Run the search → preview results → use Export to download required files
✅ Outcome
- Required business data is successfully retrieved
- Does not require archive billing setup
2
Option 2 — Restore Entire OneDrive Site (Paid Operation)
To fully reactivate the archived OneDrive personal site, billing must first be configured.
⚠️ Prerequisite — Enable Microsoft 365 Archive Billing
- Go to Microsoft 365 Admin Center → Billing → Pay-as-you-go services
- Configure Microsoft 365 Archive / Syntex and link an Azure Subscription
PowerShell — SharePoint Online
Connect-SPOService -Url https://yourtenant-admin.sharepoint.com # Verify archive status Get-SPOSite -Identity yourOneDriveSiteURL | Select Url, ArchiveStatus # Reactivate archived site (paid operation) Set-SPOSiteArchiveState -Identity yourOneDriveSiteURL -ArchiveState Active # Validate restoration Get-SPOSite -Identity yourOneDriveSiteURL | Select Url, ArchiveStatus, StorageUsageCurrent
💰 Cost Considerations
| Operation | Cost Model |
|---|---|
| Storage | ~$0.05 per GB / month |
| Reactivation | ~$0.60 per GB (one-time) |
Charges apply only if full site restoration is performed.
💡 Best Practices / Recommendations
- Always transfer ownership or back up user OneDrive data during employee offboarding — before license removal
- Use Retention Policies in Microsoft Purview to safeguard business-critical data automatically
- Avoid relying on access to unlicensed user OneDrive accounts — plan data migration at offboarding time
- Use eDiscovery as a first recovery option before opting for paid site restoration to avoid unnecessary costs
📚 References & Further Reading
- 🔗 Unlicensed OneDrive Accounts — Microsoft Learn
- 🔗 Microsoft Purview eDiscovery — Microsoft Learn
- 🔗 Set-SPOSiteArchiveState (PowerShell) — Microsoft Learn
✅ Key Takeaway
- ✅ Data recovery is possible without cost using eDiscovery
- ❌ Full OneDrive site restoration requires billing setup and payment
- 📌 This model is part of Microsoft’s shift toward controlled, consumption-based data recovery
