Command to check deleted mailboxes in exchange 2007
Hi,
What is the command to view the mailbox which is bieng deleted.
I want to check the deleted date and time of the mailbox
Regards,
Manju
December 1st, 2010 8:17am
http://technet.microsoft.com/en-us/library/bb124612(EXCHG.80).aspx
Get-MailboxStatistics | Where {$_.DisconnectDate -ne $null}
Free Windows Admin Tool Kit Click here and download it now
December 1st, 2010 8:29am
from the exchange server
Get-MailboxStatistics | Where-Object {$_.DisconnectDate -notlike `'} | select Displayname, Database, DisconnectDate
From any computer that has managment tools installed
Get-ExchangeServer | Where-Object {$_.IsMailboxServer –eq $true} | ForEach-Object { Get-MailboxStatistics -Server $_.Name | Where-Object {$_.DisconnectDate –notlike ‘’}} | select displayname, database, disconnectdateMCSE | MCITP - Server 2008 | MCITP - Exchange 2007 | MCTS - Exchange 2010
December 1st, 2010 8:34am