Remove Old Ratings
Scenario/Problem: You want to remove comments from the Profile Service Application.
Solution: Use the Remove-SPSocialItemByDate cmdlet with the RemoveRatings parameter.
The Remove-SPSocialItemByDate cmdlet enables you to remove comments, tags, or ratings before a particular required end date. Listing 14.5 shows an example command line.
Listing 14.5. Removing Old Ratings from the Profile Service
$profileProxy = Get-SPServiceApplicationProxy -Identity 150232e4-a3d2-4915-adb1-155ea77a6dfbRemove-SPSocialItemByDate -ProfileServiceApplicationProxy$profileProxy -RemoveRatings:$true -EndDate 12/1/2013 -Confirm:$false
RemoveRatings is a Boolean parameter, although it looks like a switch parameter. Therefore, either $true or $false ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access