I have office room which is managed by Zoom and when we create Resources in exchange online and when people send invite using that room resourcs, they are unable to join the Teams meeting due to the resources permission issue. In order to solve this issue, I follow Microsoft article https://learn.microsoft.com/en-us/microsoftteams/rooms/third-party-join?tabs=MTRW Here the fix is we need to set DeleteSubject, AddOrganizerToSubject, DeleteComments and RemovePrivateProperty for CalendarProcessing value set to False. Open Powershell and connect to exchange using connect-exchangeonline command. Get-CalendarProcessing -Identity <CalendarResourceEmail> | Format-List Identity,DeleteSubject,AddOrganizerToSubject,DeleteComments,RemovePrivateProperty You will see most of the value will set to true in room resource. Set-CalendarProcessing -Identity <CalendarResourceEmail> -DeleteComments $false Set-CalendarProcessing -Identity <CalendarResourceEmail> -DeleteS...
There was a case when the Azure Subscription was moving from one owner to another. It was accidentally move another tenant's subscriptions. There was interesting thing happened. Azure Synapse System Assigned Manage Identity (MID) was missing. All other linked jobs were failed to connected to Synapse. Usually MID missing is easy to fix. But since Synapse is managed by Microsoft and there's not simple way to just apply back MID. So I contacted Microsoft Technical Support. Initial troubleshooting was not straight forward, the support guy was trying to help using existing Microsoft Documentation. But all were outdated, later on he managed to find internal article which is not published yet in Public Microsoft Documentation. So here is the command to fix the missing MID. Firstly, Delete all identities on the Synapse Analytics. az rest --method patch --url https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/works...