Needed to clean up a winmail.dat issue by adding a contact and setting a couple of parameters. All worked as shown, except the command to test that it worked.
Get-MailContact | Select [email protected] | Select -UseMapiRichTextFormat
What is the reason for this failure?
Select-Object : A parameter cannot be found that matches parameter name 'UseMapiRichTextFormat'. At line:1 char:62 + ... t 1 Select [email protected] 1 Select -UseMapiRichTextFormat + ---------------------- + CategoryInfo : InvalidArgument: (:) [Select-Object], ParameterBindingException + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.SelectObjectCommand
Select -Property UseMapiRichTextFormat
– Daniel Manta