I took my laundry to the laundromat up the road because people in my complex seem to like the white guys soap and baskets.  I couldn’t really understand the woman very well but I think she asked me if I wanted any special soap or care for my stuff.  I ended up using my phone to show her 清洁(Clean) and gave a thumbs up.  And she was all smiles and nodded like 6 times.  I wonder if I just lost my only pair of jeans.

How to delete messages out of Exchange 2007/2010 mail stores.

This is best for when you need to kill off all traces of a message on your Exchange 2007/2010 server.  Examples include e-mail virus, obnoxious chain letters or even angry employees.

From exchange management shell(run as administrator) use the following commands.

For Global:

Get-Mailbox -Server MAILSERVER | Add-MailboxPermission -User Yourusername -AccessRights Fullaccess -InheritanceType all
Get-Mailbox -Server MAILSERVER | Export-Mailbox -SubjectKeywords “The Subject Line” -StartDate “02/28/2012″ -DeleteContent

For one specific user(rage quit then change your mind after sending?):

Get-Mailbox -Identity targetuser | Add-MailboxPermission -User Yourusername -AccessRights Fullaccess -InheritanceType all
Get-Mailbox -Identity targetuser | Export-Mailbox -SubjectKeywords “The Subject Line” -StartDate “02/28/2012″ -DeleteContent