Forum Discussion
Force delete Group Site Collection after Group Deleted?
Hi Brent Ellis!
I have a similar issue.
I created an Office 365 group, which automatically created a team site.
I deleted the team site and the group manually, and now I cannot reuse that url in a new team site because Office will add some random numbers at the end. However, if I try to access that URL I get a 403 FORBIDDEN error because the group has been deleted.
Anybody knows how I can get back this url??
Thanks!
Ángel.-
Looks that the site was inaccessible, but it still existed.
Had to use PowerShell to delete it and free the url.
Followed Henk Luggenhorst instructions:
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.
It worked great :)
Thanks a lot!!