Summary
The Tagging web part is not in Web parts gallery after migrating from SharePoint 2007 to SharePoint 2010. The upgrade process was done using the attach database method.
Symptom
- Open a page in edit mode
- Click on Add Web part
- Symptom 1: KWizCom web parts folder does not exist in the web part gallery
- Symptom 2: The Tag Cloud web part does not appear in the KWizCom web parts folder
Resolution
Resolution 1: Manually Deactivate and Activate KWizCom Tagging feature in single site collection
You must be a Site collection administrator in order to perform this actions.
You should perform the following steps:
- Go to Site Settings
- In Site Collection Administration section click on Site Collection features link
- Find KWizCom Tagging Feature and click on Deactivate button.
- Find KWizCom Tagging Feature and click on Activate button.
Resolution 2: Deactivate and Activate KWizCom Tagging feature in all site collections using PowerShell
You can find the both PowerShell command described below in attached ZIP file.
- To deactivate the KWizCom Tagging Feature on all site collections by using Windows PowerShell
-
Using Notepad, open a new a text file and then copy and paste the following script into the file.
$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname -eq "KWizCom.SharePoint.Tags_TaggingSiteFeature"}).Id
Get-SPSite -limit ALL |foreach{Disable-SPFeature -identity $webAppsFeatureId -url $_.URL -Confirm:$false}
-
Save the file with a .ps1 file name extension to a folder where you run scripts (typically C:\scripts).
-
From the Windows PowerShell command prompt (that is, PS C:\>), type the following command and press ENTER:
C:\<path>\<filename>.ps1
-
To activate the KWizCom Tagging Feature on all site collections by using Windows PowerShell
- Using Notepad, open a new a text file and then copy and paste the following script into the file.
$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname -eq "KWizCom.SharePoint.Tags_TaggingSiteFeature"}).Id
Get-SPSite -limit ALL |foreach{Enable-SPFeature $webAppsFeatureId -url $_.URL -force -Confirm:$false}
-
Save the file with a .ps1 file name extension to a folder where you run scripts (typically C:\scripts).
-
From the Windows PowerShell command prompt (that is, PS C:\>), type the following command and press ENTER:
C:\<path>\<filename>.ps1
More Information
N/A
On a scale of 1-5, please rate the helpfulness of this article
Optionally provide private feedback to help us improve this article...
Thank you for your feedback!