Cross Tenant Mailbox Migration: Error: PropTagToPropertyDefinitionConversionException

Today I was working on a Cross Tenant Mailbox Migration and kept running into issues with mailboxes being quarantined due to an PropTagToPropertyDefinitionConversionException. I stumbled across this blogpost which helped me out:

https://blog.andreas-schreiner.de/2026/03/09/cross-tenant-mailbox-migration-error-proptagtopropertydefinitionconversionexception/comment-page-1/?unapproved=20717&moderation-hash=d20b02c4e1ac29c05deb11fa84b1cc0d#comment-20717

Here’s the short of it (translated from German to English):

Several blog entries state that Microsoft Support must be contacted for the solution… this info is wrong. The following commands can be executed yourself to resolve the issue:

[Read More]

Deploy Microsoft Defender Log Collector using Docker Compose

Overview

I always prefer using Docker Compose instead of Docker commands since compose files are self-documenting. That’s why it drives me crazy when someone–especially large companies–only give documentation in docker commands. Microsoft does this when you attempt to deploy an on-prem connector for Defender for Cloud Apps. Here’s how to use a docker compose file instead.

Process

During setup, Microsoft will give you a command to run like this:

(echo $TOKEN) | docker run --name $COLLECTOR_NAME$ -p 514:514/udp -p 21:21 -p 20000-20099:20000-20099 -e "PUBLICIP='192.168.x.x'" -e "PROXY=" -e "SYSLOG=true" -e "CONSOLE=XXXX.us3.portal.cloudappsecurity.com" -e "COLLECTOR=COLLECTOR_NAME" --security-opt apparmor:unconfined --cap-add=SYS_ADMIN --restart unless-stopped -a stdin -i mcr.microsoft.com/mcas/logcollector starter

[Read More]
Categories: sysadmin  Tags: sysadmin security