Remove Old Comments

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

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

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

Listing 14.4. Removing Old Comments from the Profile Service

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

RemoveComments is a Boolean parameter, although it looks like a switch parameter. Therefore, either $true

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.