During upgrade to 6.3 the ‘Quest Web Parts’ site-collection feature has been disabled for all sites
During upgrade to 6.3 the ‘Quest Web Parts’ site-collection feature has been disabled for all sites
When upgrading QuickApps for SharePoint the site-collection feature "Quest Web Parts" has been disabled for all site collections after the solution was re-deployed. This means that users cannot add new web parts to any site pages until the feature has been activated again for each site collection.
One possible cause of this issue would be that the installation account used for the upgrade did not have the correct permissions to each site collection where the feature was deployed.
<p>There are two possible resolutions to this issue:</p><p><strong>RESOLUTION 1</strong></p><p>Manually activate the site-collection feature "Quest Web Parts" for each site collection where the feature is required.</p><p><strong>RESOLUTION 2</strong></p><p>Use PowerShell to activate the feature for all site collections. An example of a script to perform this task is below:</p><div><strong>$webApp = Get-SPWebApplication -Identity </strong><em>WebApplicationURL</em></div><div><strong>$webApp | Get-SPSite -limit all | ForEach-Object {Enable-SPFeature -Identity “QuestWebParts” -Url $_.Url}</strong></div>
One possible cause of this issue would be that the installation account used for the upgrade did not have the correct permissions to each site collection where the feature was deployed.