Forum Discussion
Force delete Group Site Collection after Group Deleted?
This whole thread makes me think that a lot of this on the backend is some sort of sync process, and I generally hate sync processes as they tend to always break or get "stuck" :) Is the team watching the failure rate of these sorts of actions to prioritize ways to improve the reliability? Nothing erodes user confidence faster than an action they see as simple, like a delete, not functioning properly!
We all know how complex this actually is, but explaining that to a user nets you "the look" which I'm sure you've all seen. This stuff needs to become bulletproof over time.
There is an other thread on this problem: https://techcommunity.microsoft.com/t5/Office-365-Groups/Cannot-delete-sharepoint-after-I-delete-a-group/m-p/57949/highlight/false#M2881
I just posted a solution that helped me:
First unlock the SharePoint site:
Set-SPOSite -Identity https://<name>/sites/<sitename> -LockState Unlock
Then add your global admin account:
Set-SPOSite -Identity https://<name>/sites/<sitename> -owner <your global admin account>
Then delete the site.
- Emily GagnonSep 08, 2017Copper Contributor
Perfect... it fix the issue..
Thank
- Blake FowlerJul 20, 2017Copper ContributorVery helpful. Had some sites get hung after group deletion and this does the trick
- Matias IngrassiaJun 19, 2017Copper Contributor
Oh Henk you rock! before 4 hours I can solve this with your method. Thanks!