Forum Discussion
yshahzad
May 22, 2023Copper Contributor
Office 365 mailbox shows full instead of In-Place archiving
Hi We have a user whose Office 365 mailbox shows full instead of In-Place archiving. In-Place archiving is still more than 50%. How to fix this
yshahzad
May 22, 2023Copper Contributor
Default policy
Default 2-year move to archive
Default 730 days Archive
Default 2-year move to archive
Default 730 days Archive
May 22, 2023
and the emails aged more than 2 years are not moved to the archive ?
you can force the archiving of the emails on this mailbox by using the managed folder assistant command:
Start-ManagedFolderAssistant -Identity "Chris"
after running this script the emails will move the archive folder as per the policy applied and you can monitor the space used in the archive
you can force the archiving of the emails on this mailbox by using the managed folder assistant command:
Start-ManagedFolderAssistant -Identity "Chris"
after running this script the emails will move the archive folder as per the policy applied and you can monitor the space used in the archive
- yshahzadMay 22, 2023Copper ContributorWill I run this command in Windows Powershell on the user's system or on any system?
- yshahzadMay 22, 2023Copper ContributorI tried to run this command on my system but got the below error:
Start-ManagedFolderAssistant : The term 'Start-ManagedFolderAssistant' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ Start-ManagedFolderAssistant -identitiy "Rizwan"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Start-ManagedFolderAssistant:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException- May 22, 2023
yshahzad you need to connect to MS online first using PowerShell, here the steps:
- Install-Module MSOnline
- $Msolcred = Get-credential
- Connect-MsolService -Credential $MsolCred
- Start-ManagedFolderAssistant -Identity "Chris"
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily.