Link to home
Start Free TrialLog in
Avatar of dougdog
dougdog

asked on

whats the command to delete an email from all mailboxes in exchange 2007 sp2

i need to delete an email from every mailbox
Avatar of Hendrik Wiese
Hendrik Wiese
Flag of South Africa image

Export and delete all messages that contain "TEST Subject" in their subject from all mailboxes from the DB1 database to a folder called "TEST DATA" in the Administrator mailbox:

Get-mailbox -database 'DB1' | export-mailbox –SubjectKeywords "TEST Subject" -TargetFolder "TEST DATA" -TargetMailbox Administrator –DeleteContent 

Open in new window


And ensure that you have the correct permission as per the following article: http://www.kevintaber.com/2009/06/09/search-for-and-delete-emails-in-exchange-2007-mailboxes-using-powershell/

Hope this helps!!
Avatar of Rajkumar Duraisamy
Same as above mentioned command, To search it from all the mailbox and you dont want to have a backup of those emails

Get-mailbox -ResultSize unlimited| export-mailbox –SubjectKeywords "TEST Subject" –DeleteContent
Avatar of dougdog
dougdog

ASKER

is it meant to move all the emails with test subject to a folder in the specified mailbox
Yes that is what it does and after it moved all the messages it will delete them. ;)
Avatar of dougdog

ASKER

can i get it to not delete them id rather do it manually im afraid of this deleting more data that its mean to
Avatar of dougdog

ASKER

i was going to use this command its the only one i can seem to get working

Get-Mailbox -Server EXCHSVR01 | Export-Mailbox -SubjectKeywords “Confidential reports” -StartDate “06/09/2009¿ -DeleteContent
Then run the command like this to move it to the administrator mailbox

Get-mailbox -database 'DB1' | export-mailbox –SubjectKeywords "TEST Subject" -TargetFolder "TEST DATA" -TargetMailbox Administrator
Avatar of dougdog

ASKER

can i have it to run against the server as i have multiple databases
Try the following:

Get-mailbox -ResultSize unlimited | export-mailbox –SubjectKeywords "TEST Subject" -TargetFolder "TEST DATA" -TargetMailbox Administrator
Avatar of dougdog

ASKER

when i run thsi the folder i created remains empty
Avatar of dougdog

ASKER

when i run this command it looks like it is deleting loads of mail
im a little worried its deleting more than i t should
Capture.PNG
Avatar of dougdog

ASKER

and the test data folder remain empty
ASKER CERTIFIED SOLUTION
Avatar of Hendrik Wiese
Hendrik Wiese
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial