Project Server 2010 – could not be deleted because other objects depend on it
Problème:
Suite Ă la suppression partielle d’un site PWA, la recrĂ©ation du mĂŞme site Ă©choue avec le message suivant:
An object in the SharePoint administrative framework, "ProjectDatabase Name=ProjectServer_Archive", could not be deleted because other objects depend on it. Update all of these dependants to point to null or different objects and retry this operation. The dependant objects are as follows:ProjectSite Name=c1a6cdf0-cf4b-452f-8fea-ef339e8be2cc
Solution:
La solution que j’ai appliquĂ© est de supprimer le site pseudo fantĂ´me:
$a=(Get-SPServiceApplication | ?{$_.Name -match "project"}).SiteCollection | ?{$_.SiteID -match "c1a6cdf0-cf4b-452f-8fea-ef339e8be2cc"}
$a
$a.delete()
et voilĂ !
Popularity: 1% [?]