Error: There was a problem deleting Web site "/Subsite". Sites that have subsites or certain apps can't be deleted. Please try again after deleting all subsites and removing the apps.
Solution:
Run PowerShell command
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
Function Remove-ChildSites([Microsoft.SharePoint.SPWeb]$Web)
{
Foreach($ChildWeb in $Web.Webs)
{
Remove-ChildSites($ChildWeb)
}
Write-host Removing web $Web.Url
Remove-SPWeb $Web -Confirm:$false
}
$ParentWeb= Get-SPWeb $ParentWebURL
Remove-ChildSites $ParentWeb
No comments:
Post a Comment