Cannot empty emails in deleted items folder

IniobongNkanga-8038 296 Reputation points
2024-05-23T03:34:41.84+00:00

Hello 

 

Please i need your help on this issue.

 

on outlook Have tried over 5 days to repeatedly delete the last 61,000 emails in my deleted items folder before I hand over the security key to the company who have brought or company and domain. 

 

Please help so I can empty the last 61,000 items in the deleted folder, thank you

Microsoft Exchange Online
Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,169 questions
Outlook
Outlook
A family of Microsoft email and calendar products.
3,329 questions
Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
5,037 questions
Microsoft Exchange
Microsoft Exchange
Microsoft messaging and collaboration software.
444 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Jake Zhang-MSFT 2,635 Reputation points Microsoft Vendor
    2024-05-23T09:16:54.1333333+00:00

    Hello @IniobongNkanga-8038,

    Welcome to the Microsoft forum for technical support.

    Based on your description, I suggest you try the following methods to empty the Deleted Items folder:

    1. Sometimes, the Outlook desktop application may struggle to handle large amounts of data. In this case, it may be more effective to log into OWA and try to empty the Deleted Items folder from there.
    2. Use the command in the following format in Exchange Management Shell to delete all messages in a specific user's deleted items:

    Search-Mailbox -Identity "Username" -DeleteContent -Force

    1. Use the command in the following format to check whether the mailbox is on litigation hold or in-place hold:

    Get-Mailbox -Identity "Username" | Format-List LitigationHoldEnabled, LitigationHoldDuration, LitigationHoldDate

    or

    Get-Mailbox -Identity "Username" | Select-Object -ExpandProperty InPlaceHolds

    This will not allow you to delete items from your Deleted Items folder if you are on litigation hold or in-place hold. Removing the hold will solve the problem. Litigation hold or in-place hold can be disabled using a command of the following format:

    Set-Mailbox -Identity "Username" -LitigationHoldEnabled $false

    or

    Set-MailboxSearch "<HoldId>" -InPlaceHoldEnabled $false

    Please feel free to contact me if you have any queries.

    Best,

    Jake Zhang