"The properties of the message have been changed" prompt when forwarding/replying in Outlook

Anonymous
2021-05-21T21:28:23+00:00

When users open a message in its own window that has a pdf attachment and replies or forwards the message; when they close the original window, outlook prompts "The properties of the message <email_subject> have been changed. Want to save your changes to this message?"

Steps to recreate this issue:

  • Message must have pdf or txt attachment
  • Open the original message in its own window
  • Reply-to or forward the message
  • Closing original message that was previously opened in its own window

Attempts to disable add-ins or running outlook in safe-mode do not resolve this issue.

Outlook | Windows | Classic Outlook for Windows | For home

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2021-06-16T08:16:59+00:00

Hi All,

First, apologize for the inconvenience caused by this problem in Outlook Client. Microsoft has realized this issue and the dedicated outlook teams are working on this problem to fix it. It is a known issue in the current Outlook Clients, and a fix will be released to Office version 2106 on 2021/6/17. For the affected users please navigate to Outlook Web App as temporary workaround and wait for the new fix release with some more patience, thanks. For more details, please refer to "The properties of the message have been changed" prompt when forwarding/replying in Outlook.

Thanks for your understanding and patience.

Best Regards,

Oliver

Was this answer helpful?

20+ people found this answer helpful.
0 comments No comments

157 additional answers

Sort by: Oldest
  1. Anonymous
    2021-06-07T07:13:34+00:00

    I have the same outlook build although it is described as for 365 MSO. I use UKFast Shared Exchange. Changing the registry made no difference to me.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2021-06-07T10:54:01+00:00

    Same issue here, tryed everything without solving the problem.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2021-06-07T11:14:49+00:00

    I have compared the properties of a message before and after replying to it - when this problem occurs and found one potentially significant change:

    Image

    As seen here, messages arrive without an OutlookInternalVersion or OutlookVersion - then after replying to the message and saving - it has been populated.

    Any subsequent replies to messages in this conversation do not prompt to save changes.

    If anyone else wants to check this, here is the powershell I used.

    First, copy the email before you reply to it into an empty folder on disk and rename the msg file as Before.msg

    Then reply to the email in outlook and save changes when prompted - copy the email to the folder on disk as After.msg

    (The name just have to be different - choose your own file names)

    Now open up a powershell prompt in that folder and run this:

    $outlook = New-Object -ComObject Outlook.Application

    Get-ChildItem -Filter *.msg |

    ForEach-Object {

    $msg = $outlook.Session.OpenSharedItem($\_.FullName)
    
    $msg | Out-File -FilePath ($\_.FullName -replace ".msg$",".log")
    
    $msg.Close(1) 
    

    }

    Now use a tool like WinMerge to compare the two ".log" files for differences.

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2021-06-07T13:53:51+00:00

    Registry fix worked until the end of the day. User is now experiencing the same issue.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments