Hi @Elmar Babayev ,
Welcome to the Microsoft Q&A platform!
Based on your description, you are experiencing some issues related to invalid named properties in PowerShell and Outlook.
About the error you see in Get-MailboxFolderStatistics usually occurs when there is a problem with the named properties in the mailbox. Here are some possible solutions:
- Sometimes, corrupted items in the mailbox can cause this error. You can use the New-MailboxRepairRequest cmdlet to repair the mailbox:
New-MailboxRepairRequest -Mailbox <User> -CorruptionType ProvisionedFolder,SearchFolder,AggregateCounts,Folderview
- If you are using Exchange Online, try using the Get-EXOMailboxFolderStatistics cmdlet instead:
Get-EXOMailboxFolderStatistics -Identity <User> -FolderScope Calendar
- Moving the mailbox to another database can sometimes resolve issues with named properties:
New-MoveRequest -Identity <User>
About the Outlook error indicates a problem with the named properties related to the Scheduling Service Meeting Options. This can happen if the mailbox has too many properties in the PublicString namespace, exhausting the quota for that namespace.
- If you are using Digital Guardian, suspend its use as it may create redundant attributes.
- Moving the mailbox to another database and then recreating the Outlook OST file can help alleviate this issue. You can request a mailbox move through the Microsoft 365 Admin portal1.
- Running the following command can help clean up the free/busy data, which may resolve the issue:
outlook.exe /cleanfreebusy
Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer.
Best,
Jake Zhang