#TodayILearned this bit of Powershell strips out the ‘Registered Trade Mark’ (little R in a circle) symbol from a string.

In this case the string was the caption for the Windows OS in Server 2008).

[string]$RegisterMark = [char]174 $Caption = $Caption.replace($RegisterMark,'')