Remove Old Tags

Scenario/Problem: You want to remove comments from the Profile Service Application.

Solution: Use the Remove-SPSocialItemByDate cmdlet with the RemoveTags parameter.

The Remove-SPSocialItemByDate cmdlet enables you to remove comments, tags, or ratings before a particular required end date. Listing 14.6 shows an example command line.

Listing 14.6. Removing Old Tags from the Profile Service

$profileProxy = Get-SPServiceApplicationProxy -Identity 150232e4-a3d2-4915-adb1-155ea77a6dfbRemove-SPSocialItemByDate -ProfileServiceApplicationProxy $profileProxy-RemoveTags:$true -EndDate 12/1/2013 -Confirm:$false

RemoveTags is a Boolean parameter, although it looks like a switch parameter. Therefore, either $true or $false needs to be ...

Get PowerShell™ for SharePoint® 2013 How-To now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.